home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 1.0 beta / flock-1.0RC3.en-US.win32.exe / flock / components / nsUpdateService.js < prev    next >
Text File  |  2007-10-18  |  106KB  |  3,169 lines

  1. //@line 42 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2.  
  3. const PREF_APP_UPDATE_ENABLED             = "app.update.enabled";
  4. const PREF_APP_UPDATE_AUTO                = "app.update.auto";
  5. const PREF_APP_UPDATE_MODE                = "app.update.mode";
  6. const PREF_APP_UPDATE_SILENT              = "app.update.silent";
  7. const PREF_APP_UPDATE_INTERVAL            = "app.update.interval";
  8. const PREF_APP_UPDATE_TIMER               = "app.update.timer";
  9. const PREF_APP_UPDATE_LOG_BRANCH          = "app.update.log.";
  10. const PREF_APP_UPDATE_URL                 = "app.update.url";
  11. const PREF_APP_UPDATE_URL_OVERRIDE        = "app.update.url.override";
  12. const PREF_APP_UPDATE_URL_DETAILS         = "app.update.url.details";
  13. const PREF_APP_UPDATE_CHANNEL             = "app.update.channel";
  14. const PREF_APP_UPDATE_SHOW_INSTALLED_UI   = "app.update.showInstalledUI";
  15. const PREF_APP_UPDATE_LASTUPDATETIME_FMT  = "app.update.lastUpdateTime.%ID%";
  16. const PREF_APP_EXTENSIONS_VERSION         = "app.extensions.version";
  17. const PREF_GENERAL_USERAGENT_LOCALE       = "general.useragent.locale";
  18. const PREF_APP_UPDATE_INCOMPATIBLE_MODE   = "app.update.incompatible.mode";
  19. const PREF_UPDATE_NEVER_BRANCH            = "app.update.never."
  20. const PREF_PARTNER_BRANCH                 = "app.partner.";
  21. const PREF_GENERAL_USERAGENT_EDITION      = "general.useragent.edition";
  22.  
  23. const URI_UPDATE_PROMPT_DIALOG  = "chrome://mozapps/content/update/updates.xul";
  24. const URI_UPDATE_HISTORY_DIALOG = "chrome://mozapps/content/update/history.xul";
  25. const URI_BRAND_PROPERTIES      = "chrome://branding/locale/brand.properties";
  26. const URI_UPDATES_PROPERTIES    = "chrome://mozapps/locale/update/updates.properties";
  27. const URI_UPDATE_NS             = "http://www.mozilla.org/2005/app-update";
  28.  
  29. const KEY_APPDIR          = "XCurProcD";
  30. //@line 71 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  31. const KEY_UPDROOT         = "UpdRootD";
  32. const KEY_UAPPDATA        = "UAppData";
  33. //@line 74 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  34.  
  35. const DIR_UPDATES         = "updates";
  36. const FILE_UPDATE_STATUS  = "update.status";
  37. const FILE_UPDATE_ARCHIVE = "update.mar";
  38. const FILE_UPDATE_LOG     = "update.log"
  39. const FILE_UPDATES_DB     = "updates.xml";
  40. const FILE_UPDATE_ACTIVE  = "active-update.xml";
  41. const FILE_PERMS_TEST     = "update.test";
  42. const FILE_LAST_LOG       = "last-update.log";
  43.  
  44. const MODE_RDONLY   = 0x01;
  45. const MODE_WRONLY   = 0x02;
  46. const MODE_CREATE   = 0x08;
  47. const MODE_APPEND   = 0x10;
  48. const MODE_TRUNCATE = 0x20;
  49.  
  50. const PERMS_FILE      = 0644;
  51. const PERMS_DIRECTORY = 0755;
  52.  
  53. const STATE_NONE            = "null";
  54. const STATE_DOWNLOADING     = "downloading";
  55. const STATE_PENDING         = "pending";
  56. const STATE_APPLYING        = "applying";
  57. const STATE_SUCCEEDED       = "succeeded";
  58. const STATE_DOWNLOAD_FAILED = "download-failed";
  59. const STATE_FAILED          = "failed";
  60.  
  61. // From updater/errors.h:
  62. const WRITE_ERROR = 7;
  63.  
  64. const DOWNLOAD_CHUNK_SIZE           = 300000; // bytes
  65. const DOWNLOAD_BACKGROUND_INTERVAL  = 600;    // seconds
  66. const DOWNLOAD_FOREGROUND_INTERVAL  = 0;
  67.  
  68. // Values for the PREF_APP_UPDATE_INCOMPATIBLE_MODE pref. See documentation in
  69. // code below. 
  70. const INCOMPATIBLE_MODE_NEWVERSIONS   = 0;
  71. const INCOMPATIBLE_MODE_NONEWVERSIONS = 1;
  72.  
  73. const POST_UPDATE_CONTRACTID = "@mozilla.org/updates/post-update;1";
  74.  
  75. const nsILocalFile            = Components.interfaces.nsILocalFile;
  76. const nsIUpdateService        = Components.interfaces.nsIUpdateService;
  77. const nsIUpdateItem           = Components.interfaces.nsIUpdateItem;
  78. const nsIPrefLocalizedString  = Components.interfaces.nsIPrefLocalizedString;
  79. const nsIIncrementalDownload  = Components.interfaces.nsIIncrementalDownload;
  80. const nsIFileInputStream      = Components.interfaces.nsIFileInputStream;
  81. const nsIFileOutputStream     = Components.interfaces.nsIFileOutputStream;
  82. const nsICryptoHash           = Components.interfaces.nsICryptoHash;
  83.  
  84. const Node = Components.interfaces.nsIDOMNode;
  85.  
  86. var gApp        = null;
  87. var gPref       = null;
  88. var gABI        = null;
  89. var gOSVersion  = null;
  90. var gConsole    = null;
  91. var gLogEnabled = { };
  92.  
  93. // shared code for suppressing bad cert dialogs
  94. //@line 40 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/../../shared/src/badCertHandler.js"
  95.  
  96. /**
  97.  * Only allow built-in certs for HTTPS connections.  See bug 340198.
  98.  */
  99. function checkCert(channel) {
  100.   if (!channel.originalURI.schemeIs("https"))  // bypass
  101.     return;
  102.  
  103.   const Ci = Components.interfaces;  
  104.   var cert =
  105.       channel.securityInfo.QueryInterface(Ci.nsISSLStatusProvider).
  106.       SSLStatus.QueryInterface(Ci.nsISSLStatus).serverCert;
  107.  
  108.   var issuer = cert.issuer;
  109.   while (issuer && !cert.equals(issuer)) {
  110.     cert = issuer;
  111.     issuer = cert.issuer;
  112.   }
  113.  
  114.   if (!issuer || issuer.tokenName != "Builtin Object Token")
  115.     throw "cert issuer is not built-in";
  116. }
  117.  
  118. /**
  119.  * This class implements nsIBadCertListener.  It's job is to prevent "bad cert"
  120.  * security dialogs from being shown to the user.  It is better to simply fail
  121.  * if the certificate is bad. See bug 304286.
  122.  */
  123. function BadCertHandler() {
  124. }
  125. BadCertHandler.prototype = {
  126.  
  127.   // nsIBadCertListener
  128.   confirmUnknownIssuer: function(socketInfo, cert, certAddType) {
  129.     LOG("EM BadCertHandler: Unknown issuer");
  130.     return false;
  131.   },
  132.  
  133.   confirmMismatchDomain: function(socketInfo, targetURL, cert) {
  134.     LOG("EM BadCertHandler: Mismatched domain");
  135.     return false;
  136.   },
  137.  
  138.   confirmCertExpired: function(socketInfo, cert) {
  139.     LOG("EM BadCertHandler: Expired certificate");
  140.     return false;
  141.   },
  142.  
  143.   notifyCrlNextupdate: function(socketInfo, targetURL, cert) {
  144.   },
  145.  
  146.   // nsIChannelEventSink
  147.   onChannelRedirect: function(oldChannel, newChannel, flags) {
  148.     // make sure the certificate of the old channel checks out before we follow
  149.     // a redirect from it.  See bug 340198.
  150.     checkCert(oldChannel);
  151.   },
  152.  
  153.   // nsIInterfaceRequestor
  154.   getInterface: function(iid) {
  155.     if (iid.equals(Components.interfaces.nsIBadCertListener) ||
  156.         iid.equals(Components.interfaces.nsIChannelEventSink))
  157.       return this;
  158.  
  159.     Components.returnCode = Components.results.NS_ERROR_NO_INTERFACE;
  160.     return null;
  161.   },
  162.  
  163.   // nsISupports
  164.   QueryInterface: function(iid) {
  165.     if (!iid.equals(Components.interfaces.nsIBadCertListener) &&
  166.         !iid.equals(Components.interfaces.nsIChannelEventSink) &&
  167.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  168.         !iid.equals(Components.interfaces.nsISupports))
  169.       throw Components.results.NS_ERROR_NO_INTERFACE;
  170.     return this;
  171.   }
  172. };
  173. //@line 135 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  174.  
  175. /**
  176.  * Logs a string to the error console. 
  177.  * @param   string
  178.  *          The string to write to the error console..
  179.  */  
  180. function LOG(module, string) {
  181.   if (module in gLogEnabled) {
  182.     dump("*** " + module + ": " + string + "\n");
  183.     gConsole.logStringMessage(string);
  184.   }
  185. }
  186.  
  187. /**
  188.  * Convert a string containing binary values to hex.
  189.  */
  190. function binaryToHex(input) {
  191.   var result = "";
  192.   for (var i = 0; i < input.length; ++i) {
  193.     var hex = input.charCodeAt(i).toString(16);
  194.     if (hex.length == 1)
  195.       hex = "0" + hex;
  196.     result += hex;
  197.   }
  198.   return result;
  199. }
  200.  
  201. /**
  202.  * Gets a File URL spec for a nsIFile
  203.  * @param   file
  204.  *          The file to get a file URL spec to
  205.  * @returns The file URL spec to the file
  206.  */
  207. function getURLSpecFromFile(file) {
  208.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  209.                          .getService(Components.interfaces.nsIIOService);
  210.   var fph = ioServ.getProtocolHandler("file")
  211.                   .QueryInterface(Components.interfaces.nsIFileProtocolHandler);
  212.   return fph.getURLSpecFromFile(file);
  213. }
  214.  
  215. /**
  216.  * Gets the specified directory at the specified hierarchy under a 
  217.  * Directory Service key. 
  218.  * @param   key
  219.  *          The Directory Service Key to start from
  220.  * @param   pathArray
  221.  *          An array of path components to locate beneath the directory 
  222.  *          specified by |key|
  223.  * @return  nsIFile object for the location specified. If the directory
  224.  *          requested does not exist, it is created, along with any
  225.  *          parent directories that need to be created.
  226.  */
  227. function getDir(key, pathArray) {
  228.   return getDirInternal(key, pathArray, true, false);
  229. }
  230.  
  231. /**
  232.  * Gets the specified directory at the speciifed hierarchy under a 
  233.  * Directory Service key. 
  234.  * @param   key
  235.  *          The Directory Service Key to start from
  236.  * @param   pathArray
  237.  *          An array of path components to locate beneath the directory 
  238.  *          specified by |key|
  239.  * @return  nsIFile object for the location specified. If the directory
  240.  *          requested does not exist, it is NOT created.
  241.  */
  242. function getDirNoCreate(key, pathArray) {
  243.   return getDirInternal(key, pathArray, false, false);
  244. }
  245.  
  246. /**
  247.  * Gets the specified directory at the specified hierarchy under the 
  248.  * update root directory.
  249.  * @param   pathArray
  250.  *          An array of path components to locate beneath the directory 
  251.  *          specified by |key|
  252.  * @return  nsIFile object for the location specified. If the directory
  253.  *          requested does not exist, it is created, along with any
  254.  *          parent directories that need to be created.
  255.  */
  256. function getUpdateDir(pathArray) {
  257.   return getDirInternal(KEY_APPDIR, pathArray, true, true);
  258. }
  259.  
  260. /**
  261.  * Gets the specified directory at the speciifed hierarchy under a 
  262.  * Directory Service key. 
  263.  * @param   key
  264.  *          The Directory Service Key to start from
  265.  * @param   pathArray
  266.  *          An array of path components to locate beneath the directory 
  267.  *          specified by |key|
  268.  * @param   shouldCreate
  269.  *          true if the directory hierarchy specified in |pathArray|
  270.  *          should be created if it does not exist,
  271.  *          false otherwise.
  272.  * @param   update
  273.  *          true if finding the update directory,
  274.  *          false otherwise.
  275.  * @return  nsIFile object for the location specified. 
  276.  */
  277. function getDirInternal(key, pathArray, shouldCreate, update) {
  278.   var fileLocator = Components.classes["@mozilla.org/file/directory_service;1"]
  279.                               .getService(Components.interfaces.nsIProperties);
  280.   var dir = fileLocator.get(key, Components.interfaces.nsIFile);
  281. //@line 243 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  282.   if (update) {
  283.     try {
  284.       dir = fileLocator.get(KEY_UPDROOT, Components.interfaces.nsIFile);
  285.     } catch (e) {
  286.     }
  287.   }
  288. //@line 250 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  289.   for (var i = 0; i < pathArray.length; ++i) {
  290.     dir.append(pathArray[i]);
  291.     if (shouldCreate && !dir.exists())
  292.       dir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  293.   }
  294.   return dir;
  295. }
  296.  
  297. /**
  298.  * Gets the file at the speciifed hierarchy under a Directory Service key.
  299.  * @param   key
  300.  *          The Directory Service Key to start from
  301.  * @param   pathArray
  302.  *          An array of path components to locate beneath the directory 
  303.  *          specified by |key|. The last item in this array must be the
  304.  *          leaf name of a file.
  305.  * @return  nsIFile object for the file specified. The file is NOT created
  306.  *          if it does not exist, however all required directories along 
  307.  *          the way are.
  308.  */
  309. function getFile(key, pathArray) {
  310.   var file = getDir(key, pathArray.slice(0, -1));
  311.   file.append(pathArray[pathArray.length - 1]);
  312.   return file;
  313. }
  314.  
  315. /**
  316.  * Gets the file at the specified hierarchy under the update root directory.
  317.  * @param   pathArray
  318.  *          An array of path components to locate beneath the directory 
  319.  *          specified by |key|. The last item in this array must be the
  320.  *          leaf name of a file.
  321.  * @return  nsIFile object for the file specified. The file is NOT created
  322.  *          if it does not exist, however all required directories along 
  323.  *          the way are.
  324.  */
  325. function getUpdateFile(pathArray) {
  326.   var file = getUpdateDir(pathArray.slice(0, -1));
  327.   file.append(pathArray[pathArray.length - 1]);
  328.   return file;
  329. }
  330.  
  331. /**
  332.  * Closes a Safe Output Stream
  333.  * @param   fos
  334.  *          The Safe Output Stream to close
  335.  */
  336. function closeSafeOutputStream(fos) {
  337.   if (fos instanceof Components.interfaces.nsISafeOutputStream) {
  338.     try {
  339.       fos.finish();
  340.     }
  341.     catch (e) {
  342.       fos.close();
  343.     }
  344.   }
  345.   else
  346.     fos.close();
  347. }
  348.  
  349. /**
  350.  * Returns human readable status text from the updates.properties bundle
  351.  * based on an error code
  352.  * @param   code
  353.  *          The error code to look up human readable status text for
  354.  * @param   defaultCode
  355.  *          The default code to look up should human readable status text
  356.  *          not exist for |code|
  357.  * @returns A human readable status text string
  358.  */
  359. function getStatusTextFromCode(code, defaultCode) {
  360.   var sbs = 
  361.       Components.classes["@mozilla.org/intl/stringbundle;1"].
  362.       getService(Components.interfaces.nsIStringBundleService);
  363.   var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  364.   var reason = updateBundle.GetStringFromName("checker_error-" + defaultCode);
  365.   try {
  366.     reason = updateBundle.GetStringFromName("checker_error-" + code);
  367.     LOG("General", "Transfer Error: " + reason + ", code: " + code);
  368.   }
  369.   catch (e) {
  370.     // Use the default reason
  371.     LOG("General", "Transfer Error: " + reason + ", code: " + defaultCode);
  372.   }
  373.   return reason;
  374. }
  375.  
  376. /**
  377.  * Get the Active Updates directory
  378.  * @param   key
  379.  *          The Directory Service Key (optional).
  380.  *          If used, don't search local appdata on Win32 and don't create dir.
  381.  * @returns The active updates directory, as a nsIFile object
  382.  */
  383. function getUpdatesDir(key) {
  384.   // Right now, we only support downloading one patch at a time, so we always
  385.   // use the same target directory.
  386.   var fileLocator =
  387.       Components.classes["@mozilla.org/file/directory_service;1"].
  388.       getService(Components.interfaces.nsIProperties);
  389.   var appDir;
  390.   if (key)
  391.     appDir = fileLocator.get(key, Components.interfaces.nsIFile);
  392.   else {
  393.     appDir = fileLocator.get(KEY_APPDIR, Components.interfaces.nsIFile);
  394. //@line 356 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  395.     try {
  396.       appDir = fileLocator.get(KEY_UPDROOT, Components.interfaces.nsIFile);
  397.     } catch (e) {
  398.     }
  399. //@line 361 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  400.   }
  401.   appDir.append(DIR_UPDATES);
  402.   appDir.append("0");
  403.   if (!appDir.exists() && !key)
  404.     appDir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  405.   return appDir;
  406. }
  407.  
  408. /**
  409.  * Reads the update state from the update.status file in the specified
  410.  * directory.
  411.  * @param   dir
  412.  *          The dir to look for an update.status file in
  413.  * @returns The status value of the update.
  414.  */
  415. function readStatusFile(dir) {
  416.   var statusFile = dir.clone();
  417.   statusFile.append(FILE_UPDATE_STATUS);
  418.   LOG("General", "Reading Status File: " + statusFile.path);
  419.   return readStringFromFile(statusFile) || STATE_NONE;
  420. }
  421.  
  422. /**
  423.  * Writes the current update operation/state to a file in the patch 
  424.  * directory, indicating to the patching system that operations need
  425.  * to be performed.
  426.  * @param   dir
  427.  *          The patch directory where the update.status file should be 
  428.  *          written.
  429.  * @param   state
  430.  *          The state value to write.
  431.  */
  432. function writeStatusFile(dir, state) {
  433.   var statusFile = dir.clone();
  434.   statusFile.append(FILE_UPDATE_STATUS);
  435.   writeStringToFile(statusFile, state);
  436. }
  437.  
  438. /**
  439.  * Removes the Updates Directory
  440.  * @param   key
  441.  *          The Directory Service Key under which update directory resides
  442.  *          (optional).
  443.  */
  444. function cleanUpUpdatesDir(key) {
  445.   // Bail out if we don't have appropriate permissions
  446.   var updateDir;
  447.   try {
  448.     updateDir = getUpdatesDir(key);
  449.   }
  450.   catch (e) {
  451.     return;
  452.   }
  453.  
  454.   var e = updateDir.directoryEntries;
  455.   while (e.hasMoreElements()) {
  456.     var f = e.getNext().QueryInterface(Components.interfaces.nsIFile);
  457.     // Preserve the last update log file for debugging purposes
  458.     if (f.leafName == FILE_UPDATE_LOG) {
  459.       try {
  460.         var dir = f.parent.parent;
  461.         var logFile = dir.clone();
  462.         logFile.append(FILE_LAST_LOG);
  463.         if (logFile.exists())
  464.           logFile.remove(false);
  465.         f.copyTo(dir, FILE_LAST_LOG);
  466.  
  467.         var ext = '.' + String(Date.now());
  468.         var logFile = dir.clone();
  469.         logFile.append(FILE_LAST_LOG + ext);
  470.         if (logFile.exists())
  471.           logFile.remove(false);
  472.         f.copyTo(dir, FILE_LAST_LOG + ext);
  473.       }
  474.       catch (e) {
  475.         LOG("General", "Failed to copy file: " + f.path);
  476.       }
  477.     }
  478.     // Now, recursively remove this file.  The recusive removal is really
  479.     // only needed on Mac OSX because this directory will contain a copy of
  480.     // updater.app, which is itself a directory.
  481.     try {
  482.       f.remove(true);
  483.     }
  484.     catch (e) {
  485.       LOG("General", "Failed to remove file: " + f.path);
  486.     }
  487.   }
  488.   try {
  489.     updateDir.remove(false);
  490.   } catch (e) {
  491.     LOG("General", "Failed to remove update directory: " + updateDir.path + 
  492.         " - This is almost always bad. Exception = " + e);
  493.     throw e;
  494.   }
  495. }
  496.  
  497. /**
  498.  * Clean up updates list and the updates directory.
  499.  * @param   key
  500.  *          The Directory Service Key under which update directory resides
  501.  *          (optional).
  502.  */
  503. function cleanupActiveUpdate(key) {
  504.   // Move the update from the Active Update list into the Past Updates list.
  505.   var um = 
  506.       Components.classes["@mozilla.org/updates/update-manager;1"].
  507.       getService(Components.interfaces.nsIUpdateManager);
  508.   um.activeUpdate = null;
  509.   um.saveUpdates();
  510.  
  511.   // Now trash the updates directory, since we're done with it
  512.   cleanUpUpdatesDir(key);
  513. }
  514.  
  515. /**
  516.  * Gets a preference value, handling the case where there is no default.
  517.  * @param   func
  518.  *          The name of the preference function to call, on nsIPrefBranch
  519.  * @param   preference
  520.  *          The name of the preference
  521.  * @param   defaultValue
  522.  *          The default value to return in the event the preference has 
  523.  *          no setting
  524.  * @returns The value of the preference, or undefined if there was no
  525.  *          user or default value.
  526.  */
  527. function getPref(func, preference, defaultValue) {
  528.   try {
  529.     return gPref[func](preference);
  530.   }
  531.   catch (e) {
  532.   }
  533.   return defaultValue;
  534. }
  535.  
  536. /**
  537.  * Gets the current value of the locale.  It's possible for this preference to
  538.  * be localized, so we have to do a little extra work here.  Similar code
  539.  * exists in nsHttpHandler.cpp when building the UA string.
  540.  */
  541. function getLocale() {
  542.   try {
  543.       // Get the default branch
  544.       var prefs = Components.classes["@mozilla.org/preferences-service;1"]
  545.           .getService(Components.interfaces.nsIPrefService);
  546.       var defaultPrefs = prefs.getDefaultBranch(null);
  547.       return defaultPrefs.getCharPref(PREF_GENERAL_USERAGENT_LOCALE);
  548.   } catch (e) {}
  549.  
  550.   return gPref.getCharPref(PREF_GENERAL_USERAGENT_LOCALE);
  551. }
  552.  
  553. /**
  554.  * Read the update channel from defaults only.  We do this to ensure that
  555.  * the channel is tightly coupled with the application and does not apply
  556.  * to other instances of the application that may use the same profile.
  557.  */
  558. function getUpdateChannel() {
  559.   var channel = "default";
  560.   var prefName;
  561.   var prefValue;
  562.  
  563.   var defaults =
  564.       gPref.QueryInterface(Components.interfaces.nsIPrefService).
  565.       getDefaultBranch(null);
  566.   try {
  567.     channel = defaults.getCharPref(PREF_APP_UPDATE_CHANNEL);
  568.   } catch (e) {
  569.     // use default when pref not found
  570.   }
  571.  
  572.   var edition = getPref("getCharPref", PREF_GENERAL_USERAGENT_EDITION, null);
  573.   if (edition) {
  574.     channel += "-edition-" + edition;
  575.   }
  576.  
  577.   try {
  578.     var partners = gPref.getChildList(PREF_PARTNER_BRANCH, { });
  579.     if (partners.length) {
  580.       channel += "-cck";
  581.       partners.sort();
  582.  
  583.       for each (prefName in partners) {
  584.         prefValue = gPref.getCharPref(prefName);
  585.         channel += "-" + prefValue;
  586.       }
  587.     }
  588.   }
  589.   catch (e) {
  590.     Components.utils.reportError(e);
  591.   }
  592.  
  593.   return channel;
  594. }
  595.  
  596. /**
  597.  * Get the profile UUID from the metrics service.
  598.  */
  599. function getUserUUID() {
  600.   var metrics = Components.classes["@flock.com/metrics-service;1"]
  601.                           .getService(Components.interfaces.flockIMetricsService);
  602.   return metrics.getUserUUID();
  603. }
  604.  
  605. /**
  606.  * An enumeration of items in a JS array.
  607.  * @constructor
  608.  */
  609. function ArrayEnumerator(aItems) {
  610.   this._index = 0;
  611.   if (aItems) {
  612.     for (var i = 0; i < aItems.length; ++i) {
  613.       if (!aItems[i])
  614.         aItems.splice(i, 1);      
  615.     }
  616.   }
  617.   this._contents = aItems;
  618. }
  619.  
  620. ArrayEnumerator.prototype = {
  621.   _index: 0,
  622.   _contents: [],
  623.   
  624.   hasMoreElements: function() {
  625.     return this._index < this._contents.length;
  626.   },
  627.   
  628.   getNext: function() {
  629.     return this._contents[this._index++];      
  630.   }
  631. };
  632.  
  633. /**
  634.  * Trims a prefix from a string.
  635.  * @param   string
  636.  *          The source string
  637.  * @param   prefix
  638.  *          The prefix to remove.
  639.  * @returns The suffix (string - prefix)
  640.  */
  641. function stripPrefix(string, prefix) {
  642.   return string.substr(prefix.length);
  643. }
  644.  
  645. /**
  646.  * Writes a string of text to a file.  A newline will be appended to the data
  647.  * written to the file.  This function only works with ASCII text.
  648.  */
  649. function writeStringToFile(file, text) {
  650.   var fos =
  651.       Components.classes["@mozilla.org/network/safe-file-output-stream;1"].
  652.       createInstance(nsIFileOutputStream);
  653.   var modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  654.   if (!file.exists()) 
  655.     file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  656.   fos.init(file, modeFlags, PERMS_FILE, 0);
  657.   text += "\n";
  658.   fos.write(text, text.length);    
  659.   closeSafeOutputStream(fos);
  660. }
  661.  
  662. /**
  663.  * Reads a string of text from a file.  A trailing newline will be removed
  664.  * before the result is returned.  This function only works with ASCII text.
  665.  */
  666. function readStringFromFile(file) {
  667.   var fis =
  668.       Components.classes["@mozilla.org/network/file-input-stream;1"].
  669.       createInstance(nsIFileInputStream);
  670.   var modeFlags = MODE_RDONLY;
  671.   if (!file.exists())
  672.     return null;
  673.   fis.init(file, modeFlags, PERMS_FILE, 0);
  674.   var sis =
  675.       Components.classes["@mozilla.org/scriptableinputstream;1"].
  676.       createInstance(Components.interfaces.nsIScriptableInputStream);
  677.   sis.init(fis);
  678.   var text = sis.read(sis.available());
  679.   sis.close();
  680.   if (text[text.length - 1] == "\n")
  681.     text = text.slice(0, -1);
  682.   return text;
  683. }
  684.  
  685. function getObserverService()
  686. {
  687.   return Components.classes["@mozilla.org/observer-service;1"]
  688.                    .getService(Components.interfaces.nsIObserverService);
  689. }
  690.  
  691. /**
  692.  * Update Patch
  693.  * @param   patch
  694.  *          A <patch> element to initialize this object with
  695.  * @throws if patch has a size of 0
  696.  * @constructor
  697.  */
  698. function UpdatePatch(patch) {
  699.   this._properties = {};
  700.   for (var i = 0; i < patch.attributes.length; ++i) {
  701.     var attr = patch.attributes.item(i);
  702.     attr.QueryInterface(Components.interfaces.nsIDOMAttr);
  703.     switch (attr.name) {
  704.     case "selected":
  705.       this.selected = attr.value == "true";
  706.       break;
  707.     case "size":
  708.       if (0 == parseInt(attr.value)) {
  709.         LOG("UpdatePatch", "0-sized patch!");
  710.         throw Components.results.NS_ERROR_ILLEGAL_VALUE;
  711.       }
  712.     default:
  713.       this[attr.name] = attr.value;
  714.       break;
  715.     };
  716.   }
  717. }
  718. UpdatePatch.prototype = {
  719.   /**
  720.    * See nsIUpdateService.idl
  721.    */
  722.   serialize: function(updates) {
  723.     var patch = updates.createElementNS(URI_UPDATE_NS, "patch");
  724.     patch.setAttribute("type", this.type);
  725.     patch.setAttribute("URL", this.URL);
  726.     patch.setAttribute("hashFunction", this.hashFunction);
  727.     patch.setAttribute("hashValue", this.hashValue);
  728.     patch.setAttribute("size", this.size);
  729.     patch.setAttribute("selected", this.selected);
  730.     patch.setAttribute("state", this.state);
  731.     
  732.     for (var p in this._properties) {
  733.       if (this._properties[p].present)
  734.         patch.setAttribute(p, this._properties[p].data);
  735.     }
  736.     
  737.     return patch; 
  738.   },
  739.   
  740.   /**
  741.    * A hash of custom properties
  742.    */
  743.   _properties: null,
  744.   
  745.   /**
  746.    * See nsIWritablePropertyBag.idl
  747.    */
  748.   setProperty: function(name, value) {
  749.     this._properties[name] = { data: value, present: true };
  750.   },
  751.   
  752.   /**
  753.    * See nsIWritablePropertyBag.idl
  754.    */
  755.   deleteProperty: function(name) {
  756.     if (name in this._properties)
  757.       this._properties[name].present = false;
  758.     else
  759.       throw Components.results.NS_ERROR_FAILURE;
  760.   },
  761.   
  762.   /**
  763.    * See nsIPropertyBag.idl
  764.    */
  765.   get enumerator() {
  766.     var properties = [];
  767.     for (var p in this._properties)
  768.       properties.push(this._properties[p].data);
  769.     return new ArrayEnumerator(properties);
  770.   },
  771.   
  772.   /**
  773.    * See nsIPropertyBag.idl
  774.    */
  775.   getProperty: function(name) {
  776.     if (name in this._properties &&
  777.         this._properties[name].present)
  778.       return this._properties[name].data;
  779.     throw Components.results.NS_ERROR_FAILURE;
  780.   },
  781.   
  782.   /**
  783.    * Returns whether or not the update.status file for this patch exists at the 
  784.    * appropriate location. 
  785.    */
  786.   get statusFileExists() {
  787.     var statusFile = getUpdatesDir();
  788.     statusFile.append(FILE_UPDATE_STATUS);
  789.     return statusFile.exists();
  790.   },
  791.   
  792.   /**
  793.    * See nsIUpdateService.idl
  794.    */
  795.   get state() {
  796.     if (!this.statusFileExists)
  797.       return STATE_NONE;
  798.     return this._properties.state;
  799.   },
  800.   set state(val) {
  801.     this._properties.state = val;
  802.   },
  803.   
  804.   /**
  805.    * See nsISupports.idl
  806.    */
  807.   QueryInterface: function(iid) {
  808.     if (!iid.equals(Components.interfaces.nsIUpdatePatch) &&
  809.         !iid.equals(Components.interfaces.nsIPropertyBag) && 
  810.         !iid.equals(Components.interfaces.nsIWritablePropertyBag) && 
  811.         !iid.equals(Components.interfaces.nsISupports))
  812.       throw Components.results.NS_ERROR_NO_INTERFACE;
  813.     return this;
  814.   }
  815. };
  816.  
  817. /**
  818.  * Update
  819.  * Implements nsIUpdate
  820.  * @param   update
  821.  *          An <update> element to initialize this object with
  822.  * @throws if the update contains no patches
  823.  * @constructor
  824.  */
  825. function Update(update) {
  826.   this._properties = {};
  827.   this._patches = [];
  828.   this.installDate = 0;
  829.   this.isCompleteUpdate = false;
  830.   this.channel = "default";
  831.  
  832.   // Null <update>, assume this is a message container and do no 
  833.   // further initialization
  834.   if (!update)
  835.     return;
  836.     
  837.   for (var i = 0; i < update.childNodes.length; ++i) {
  838.     var patchElement = update.childNodes.item(i);
  839.     if (patchElement.nodeType != Node.ELEMENT_NODE ||
  840.         patchElement.localName != "patch")
  841.       continue;
  842.  
  843.     patchElement.QueryInterface(Components.interfaces.nsIDOMElement);
  844.     try {
  845.       var patch = new UpdatePatch(patchElement);
  846.     } catch (e) {
  847.       continue;
  848.     }
  849.     this._patches.push(patch);
  850.   }
  851.   
  852.   if (0 == this._patches.length)
  853.     throw Components.results.NS_ERROR_ILLEGAL_VALUE;
  854.  
  855.   for (var i = 0; i < update.attributes.length; ++i) {
  856.     var attr = update.attributes.item(i);
  857.     attr.QueryInterface(Components.interfaces.nsIDOMAttr);
  858.     if (attr.name == "installDate" && attr.value) 
  859.       this.installDate = parseInt(attr.value);
  860.     else if (attr.name == "isCompleteUpdate")
  861.       this.isCompleteUpdate = attr.value == "true";
  862.     else if (attr.name == "isSecurityUpdate")
  863.       this.isSecurityUpdate = attr.value == "true";
  864.     else if (attr.name == "detailsURL")
  865.       this._detailsURL = attr.value;
  866.     else if (attr.name == "channel")
  867.       this.channel = attr.value;
  868.     else
  869.       this[attr.name] = attr.value;
  870.   }
  871.   
  872.   // The Update Name is either the string provided by the <update> element, or
  873.   // the string: "<App Name> <Update App Version>"
  874.   var name = "";
  875.   if (update.hasAttribute("name"))
  876.     name = update.getAttribute("name");
  877.   else {
  878.     var sbs = Components.classes["@mozilla.org/intl/stringbundle;1"]
  879.                         .getService(Components.interfaces.nsIStringBundleService);
  880.     var brandBundle = sbs.createBundle(URI_BRAND_PROPERTIES);
  881.     var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  882.     var appName = brandBundle.GetStringFromName("brandShortName");
  883.     name = updateBundle.formatStringFromName("updateName", 
  884.                                              [appName, this.version], 2);
  885.   }
  886.   this.name = name;
  887. }
  888. Update.prototype = {
  889.   /**
  890.    * See nsIUpdateService.idl
  891.    */
  892.   get patchCount() {
  893.     return this._patches.length;
  894.   },
  895.   
  896.   /**
  897.    * See nsIUpdateService.idl
  898.    */
  899.   getPatchAt: function(index) {
  900.     return this._patches[index];
  901.   },
  902.  
  903.   /**
  904.    * See nsIUpdateService.idl
  905.    * 
  906.    * We use a copy of the state cached on this object in |_state| only when 
  907.    * there is no selected patch, i.e. in the case when we could not load 
  908.    * |.activeUpdate| from the update manager for some reason but still have
  909.    * the update.status file to work with. 
  910.    */
  911.   _state: "",
  912.   set state(state) {
  913.     if (this.selectedPatch)
  914.       this.selectedPatch.state = state;
  915.     this._state = state;
  916.     return state;
  917.   },
  918.   get state() {
  919.     if (this.selectedPatch)
  920.       return this.selectedPatch.state;
  921.     return this._state;
  922.   },
  923.  
  924.   /**
  925.    * See nsIUpdateService.idl
  926.    */
  927.   errorCode: 0,
  928.     
  929.   /**
  930.    * See nsIUpdateService.idl
  931.    */
  932.   get selectedPatch() {
  933.     for (var i = 0; i < this.patchCount; ++i) {
  934.       if (this._patches[i].selected)
  935.         return this._patches[i];
  936.     }
  937.     return null;
  938.   },
  939.   
  940.   /**
  941.    * See nsIUpdateService.idl
  942.    */
  943.   get detailsURL() {
  944.     if (!this._detailsURL) {
  945.       try {
  946.         // Try using a default details URL supplied by the distribution
  947.         // if the update XML does not supply one.
  948.         var formatter = Components.classes["@mozilla.org/toolkit/URLFormatterService;1"]
  949.                                   .getService(Components.interfaces.nsIURLFormatter);
  950.         return formatter.formatURLPref(PREF_APP_UPDATE_URL_DETAILS);
  951.       }
  952.       catch (e) {
  953.       }
  954.     }
  955.     return this._detailsURL || "";
  956.   },
  957.   
  958.   /**
  959.    * See nsIUpdateService.idl
  960.    */
  961.   serialize: function(updates) {
  962.     var update = updates.createElementNS(URI_UPDATE_NS, "update");
  963.     update.setAttribute("type", this.type);
  964.     update.setAttribute("name", this.name);
  965.     update.setAttribute("version", this.version);
  966.     update.setAttribute("extensionVersion", this.extensionVersion);
  967.     update.setAttribute("detailsURL", this.detailsURL);
  968.     update.setAttribute("licenseURL", this.licenseURL);
  969.     update.setAttribute("serviceURL", this.serviceURL);
  970.     update.setAttribute("installDate", this.installDate);
  971.     update.setAttribute("statusText", this.statusText);
  972.     update.setAttribute("buildID", this.buildID);
  973.     update.setAttribute("isCompleteUpdate", this.isCompleteUpdate);
  974.     update.setAttribute("channel", this.channel);
  975.     updates.documentElement.appendChild(update);
  976.     
  977.     for (var p in this._properties) {
  978.       if (this._properties[p].present)
  979.         update.setAttribute(p, this._properties[p].data);
  980.     }
  981.     
  982.     for (var i = 0; i < this.patchCount; ++i)
  983.       update.appendChild(this.getPatchAt(i).serialize(updates));
  984.     
  985.     return update;
  986.   },
  987.    
  988.   /**
  989.    * A hash of custom properties
  990.    */
  991.   _properties: null,
  992.   
  993.   /**
  994.    * See nsIWritablePropertyBag.idl
  995.    */
  996.   setProperty: function(name, value) {
  997.     this._properties[name] = { data: value, present: true };
  998.   },
  999.   
  1000.   /**
  1001.    * See nsIWritablePropertyBag.idl
  1002.    */
  1003.   deleteProperty: function(name) {
  1004.     if (name in this._properties)
  1005.       this._properties[name].present = false;
  1006.     else
  1007.       throw Components.results.NS_ERROR_FAILURE;
  1008.   },
  1009.   
  1010.   /**
  1011.    * See nsIPropertyBag.idl
  1012.    */
  1013.   get enumerator() {
  1014.     var properties = [];
  1015.     for (var p in this._properties)
  1016.       properties.push(this._properties[p].data);
  1017.     return new ArrayEnumerator(properties);
  1018.   },
  1019.   
  1020.   /**
  1021.    * See nsIPropertyBag.idl
  1022.    */
  1023.   getProperty: function(name) {
  1024.     if (name in this._properties &&
  1025.         this._properties[name].present)
  1026.       return this._properties[name].data;
  1027.     throw Components.results.NS_ERROR_FAILURE;
  1028.   },
  1029.   
  1030.   /**
  1031.    * See nsISupports.idl
  1032.    */
  1033.   QueryInterface: function(iid) {
  1034.     if (!iid.equals(Components.interfaces.nsIUpdate_MOZILLA_1_8_BRANCH) &&
  1035.         !iid.equals(Components.interfaces.nsIUpdate) &&
  1036.         !iid.equals(Components.interfaces.nsIPropertyBag) &&
  1037.         !iid.equals(Components.interfaces.nsIWritablePropertyBag) &&
  1038.         !iid.equals(Components.interfaces.nsISupports))
  1039.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1040.     return this;
  1041.   }
  1042. }; 
  1043.  
  1044. /**
  1045.  * UpdateService
  1046.  * A Service for managing the discovery and installation of software updates.
  1047.  * @constructor
  1048.  */
  1049. function UpdateService() {
  1050.   gApp  = Components.classes["@mozilla.org/xre/app-info;1"]
  1051.                     .getService(Components.interfaces.nsIXULAppInfo)
  1052.                     .QueryInterface(Components.interfaces.nsIXULRuntime);
  1053.   gPref = Components.classes["@mozilla.org/preferences-service;1"]
  1054.                     .getService(Components.interfaces.nsIPrefBranch2);
  1055.   gConsole = Components.classes["@mozilla.org/consoleservice;1"]
  1056.                        .getService(Components.interfaces.nsIConsoleService);  
  1057.  
  1058.   // Not all builds have a known ABI
  1059.   try {
  1060.     gABI = gApp.XPCOMABI;
  1061.   }
  1062.   catch (e) {
  1063.     LOG("UpdateService", "XPCOM ABI unknown: updates are not possible.");
  1064.   }
  1065.  
  1066.   try {
  1067.     var sysInfo = 
  1068.       Components.classes["@mozilla.org/system-info;1"]
  1069.                 .getService(Components.interfaces.nsIPropertyBag2);
  1070.  
  1071.     gOSVersion = encodeURIComponent(sysInfo.getProperty("name") + " " +  
  1072.                                     sysInfo.getProperty("version"));
  1073.   }
  1074.   catch (e) {
  1075.     LOG("UpdateService", "OS Version unknown: updates are not possible.");
  1076.   }
  1077.  
  1078. //@line 1048 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1079.  
  1080.   // Start the update timer only after a profile has been selected so that the
  1081.   // appropriate values for the update check are read from the user's profile.  
  1082.   var os = getObserverService();
  1083.  
  1084.   os.addObserver(this, "profile-after-change", false);
  1085.  
  1086.   // Observe xpcom-shutdown to unhook pref branch observers above to avoid 
  1087.   // shutdown leaks.
  1088.   os.addObserver(this, "xpcom-shutdown", false);
  1089. }
  1090.  
  1091. UpdateService.prototype = {
  1092.   /**
  1093.    * The downloader we are using to download updates. There is only ever one of
  1094.    * these.
  1095.    */
  1096.   _downloader: null,
  1097.  
  1098.   /**
  1099.    * Handle Observer Service notifications
  1100.    * @param   subject
  1101.    *          The subject of the notification
  1102.    * @param   topic
  1103.    *          The notification name
  1104.    * @param   data
  1105.    *          Additional data
  1106.    */
  1107.   observe: function(subject, topic, data) {
  1108.     var os = getObserverService();
  1109.  
  1110.     switch (topic) {
  1111.     case "profile-after-change":
  1112.       os.removeObserver(this, "profile-after-change");
  1113.       this._start();
  1114.       break;
  1115.     case "xpcom-shutdown":
  1116.       os.removeObserver(this, "xpcom-shutdown");
  1117.       
  1118.       // Release Services
  1119.       gApp      = null;
  1120.       gPref     = null;
  1121.       gConsole  = null;
  1122.       break;
  1123.     }
  1124.   },
  1125.   
  1126.   /**
  1127.    * Start the Update Service
  1128.    */
  1129.   _start: function() {
  1130.     // Start logging
  1131.     this._initLoggingPrefs();
  1132.     
  1133.     // Clean up any extant updates
  1134.     this._postUpdateProcessing();
  1135.  
  1136.     // Register a background update check timer
  1137.     var tm = 
  1138.         Components.classes["@mozilla.org/updates/timer-manager;1"]
  1139.                   .getService(Components.interfaces.nsIUpdateTimerManager);
  1140.     var interval = getPref("getIntPref", PREF_APP_UPDATE_INTERVAL, 86400);
  1141.     tm.registerTimer("background-update-timer", this, interval);
  1142.  
  1143.     // Resume fetching...
  1144.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  1145.                         .getService(Components.interfaces.nsIUpdateManager);
  1146.     var activeUpdate = um.activeUpdate;
  1147.     if (activeUpdate) {
  1148.       var status = this.downloadUpdate(activeUpdate, true);
  1149.       if (status == STATE_NONE)
  1150.         cleanupActiveUpdate();
  1151.     }
  1152.   },
  1153.   
  1154.   /**
  1155.    * Perform post-processing on updates lingering in the updates directory
  1156.    * from a previous browser session - either report install failures (and
  1157.    * optionally attempt to fetch a different version if appropriate) or 
  1158.    * notify the user of install success.
  1159.    */
  1160.   _postUpdateProcessing: function() {
  1161.     // Detect installation failures and notify
  1162.     
  1163.     // Bail out if we don't have appropriate permissions
  1164.     if (!this.canUpdate)
  1165.       return;
  1166.       
  1167.     var status = readStatusFile(getUpdatesDir()); 
  1168.  
  1169.     // Make sure to cleanup after an update that failed for an unknown reason
  1170.     if (status == "null")
  1171.       status = null;
  1172.  
  1173.     var updRootKey = null;
  1174. //@line 1144 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1175.     function findPreviousUpdate(key) {
  1176.       var updateDir = getUpdatesDir(key);
  1177.       if (updateDir.exists()) {
  1178.         status = readStatusFile(updateDir);
  1179.         // Previous download should succeed. Otherwise, we will not be here!
  1180.         if (status == STATE_SUCCEEDED)
  1181.           updRootKey = key;
  1182.         else
  1183.           status = null;
  1184.       }
  1185.     }
  1186.  
  1187.     // required when updating from Fx 2.0.0.1 to 2.0.0.3 (or later)
  1188.     // on Windows Vista.
  1189.     if (status == null)
  1190.       findPreviousUpdate(KEY_UAPPDATA);
  1191.  
  1192.     // required to migrate from older versions.
  1193.     if (status == null)
  1194.       findPreviousUpdate(KEY_APPDIR);
  1195. //@line 1165 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1196.  
  1197.     if (status == STATE_DOWNLOADING) {
  1198.       LOG("UpdateService", "_postUpdateProcessing: Downloading patch, resuming...");
  1199.     }
  1200.     else if (status != null) {
  1201.       // null status means the update.status file is not present, because either:
  1202.       // 1) no update was performed, and so there's no UI to show
  1203.       // 2) an update was attempted but failed during checking, transfer or 
  1204.       //    verification, and was cleaned up at that point, and UI notifying of
  1205.       //    that error was shown at that stage. 
  1206.       var um = 
  1207.           Components.classes["@mozilla.org/updates/update-manager;1"].
  1208.           getService(Components.interfaces.nsIUpdateManager);
  1209.       var prompter = 
  1210.           Components.classes["@mozilla.org/updates/update-prompt;1"].
  1211.           createInstance(Components.interfaces.nsIUpdatePrompt);
  1212.  
  1213.       var shouldCleanup = true;
  1214.       var update = um.activeUpdate;
  1215.       if (!update) {
  1216.         update = new Update(null);
  1217.       }
  1218.       update.state = status;
  1219.       var sbs = 
  1220.           Components.classes["@mozilla.org/intl/stringbundle;1"].
  1221.           getService(Components.interfaces.nsIStringBundleService);
  1222.       var bundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  1223.       if (status == STATE_SUCCEEDED) {
  1224.         update.statusText = bundle.GetStringFromName("installSuccess");
  1225.         
  1226.         // Dig through the update history to find the patch that was just
  1227.         // installed and update its metadata.
  1228.         for (var i = 0; i < um.updateCount; ++i) {
  1229.           var umUpdate = um.getUpdateAt(i);
  1230.           if (umUpdate && umUpdate.version == update.version &&
  1231.                           umUpdate.buildID == update.buildID) {
  1232.             umUpdate.statusText = update.statusText;
  1233.             break;
  1234.           }
  1235.         }
  1236.  
  1237.         LOG("UpdateService", "_postUpdateProcessing: Install Succeeded, Showing UI");
  1238.         prompter.showUpdateInstalled(update);
  1239. //@line 1212 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1240.         // Perform platform-specific post-update processing.
  1241.         if (POST_UPDATE_CONTRACTID in Components.classes) {
  1242.           Components.classes[POST_UPDATE_CONTRACTID].
  1243.               createInstance(Components.interfaces.nsIRunnable).run();
  1244.         }
  1245. //@line 1218 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1246.  
  1247.         // Done with this update. Clean it up.
  1248.         cleanupActiveUpdate(updRootKey);
  1249.       }
  1250.       else {
  1251.         // If we hit an error, then the error code will be included in the
  1252.         // status string following a colon.  If we had an I/O error, then we
  1253.         // assume that the patch is not invalid, and we restage the patch so
  1254.         // that it can be attempted again the next time we restart.
  1255.         var ary = status.split(": ");
  1256.         update.state = ary[0];
  1257.         if (update.state == STATE_FAILED && ary[1]) {
  1258.           update.errorCode = ary[1];
  1259.           if (update.errorCode == WRITE_ERROR) {
  1260.             prompter.showUpdateError(update);
  1261.             writeStatusFile(getUpdatesDir(), update.state = STATE_PENDING);
  1262.             return;
  1263.           }
  1264.         }
  1265.  
  1266.         // Something went wrong with the patch application process.
  1267.         cleanupActiveUpdate();
  1268.  
  1269.         update.statusText = bundle.GetStringFromName("patchApplyFailure");
  1270.         var oldType = update.selectedPatch ? update.selectedPatch.type 
  1271.                                            : "complete";
  1272.         if (update.selectedPatch && oldType == "partial") {
  1273.           // Partial patch application failed, try downloading the complete
  1274.           // update in the background instead.
  1275.           LOG("UpdateService", "_postUpdateProcessing: Install of Partial Patch " + 
  1276.               "failed, downloading Complete Patch and maybe showing UI");
  1277.           var status = this.downloadUpdate(update, true);
  1278.           if (status == STATE_NONE)
  1279.             cleanupActiveUpdate();
  1280.         }
  1281.         else {
  1282.           LOG("UpdateService", "_postUpdateProcessing: Install of Complete or " + 
  1283.               "only patch failed. Showing error.");
  1284.         }
  1285.         update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  1286.         update.setProperty("patchingFailed", oldType);
  1287.         prompter.showUpdateError(update);
  1288.       }
  1289.     }
  1290.     else {
  1291.       LOG("UpdateService", "_postUpdateProcessing: No Status, No Update");
  1292.     }
  1293.   },
  1294.  
  1295.   /**
  1296.    * Initialize Logging preferences, formatted like so:
  1297.    *  app.update.log.<moduleName> = <true|false>
  1298.    */
  1299.   _initLoggingPrefs: function() {
  1300.     try {
  1301.       var ps = Components.classes["@mozilla.org/preferences-service;1"]
  1302.                         .getService(Components.interfaces.nsIPrefService);
  1303.       var logBranch = ps.getBranch(PREF_APP_UPDATE_LOG_BRANCH);
  1304.       var modules = logBranch.getChildList("", { value: 0 });
  1305.  
  1306.       for (var i = 0; i < modules.length; ++i) {
  1307.         if (logBranch.prefHasUserValue(modules[i]))
  1308.           gLogEnabled[modules[i]] = logBranch.getBoolPref(modules[i]);
  1309.       }
  1310.     }
  1311.     catch (e) {
  1312.     }
  1313.   },
  1314.   
  1315.   /**
  1316.    *
  1317.    */
  1318.   _needsToPromptForUpdate: function(updates) {
  1319.     // First, check for Extension incompatibilities. These trump any preference
  1320.     // settings.
  1321.     var em = Components.classes["@mozilla.org/extensions/manager;1"]
  1322.                        .getService(Components.interfaces.nsIExtensionManager);
  1323.     var incompatibleList = { };
  1324.     for (var i = 0; i < updates.length; ++i) {
  1325.       var count = {};
  1326.       em.getIncompatibleItemList(gApp.ID, updates[i].extensionVersion,
  1327.                                  nsIUpdateItem.TYPE_ADDON, false, count);
  1328.       if (count.value > 0)
  1329.         return true;
  1330.     }
  1331.  
  1332.     // Now, inspect user preferences.
  1333.     
  1334.     // No prompt necessary, silently update...
  1335.     return false;
  1336.   },
  1337.   
  1338.   /**
  1339.    * Notified when a timer fires
  1340.    * @param   timer
  1341.    *          The timer that fired
  1342.    */
  1343.   notify: function(timer) {
  1344.     // If a download is in progress, then do nothing.
  1345.     if (this.isDownloading || this._downloader && this._downloader.patchIsStaged)
  1346.       return;
  1347.  
  1348.     var self = this;
  1349.     var listener = {
  1350.       /**
  1351.        * See nsIUpdateService.idl
  1352.        */
  1353.       onProgress: function(request, position, totalSize) { 
  1354.       },
  1355.       
  1356.       /**
  1357.        * See nsIUpdateService.idl
  1358.        */
  1359.       onCheckComplete: function(request, updates, updateCount) {
  1360.         self._selectAndInstallUpdate(updates);
  1361.       },
  1362.  
  1363.       /**
  1364.        * See nsIUpdateService.idl
  1365.        */
  1366.       onError: function(request, update) { 
  1367.         LOG("Checker", "Error during background update: " + update.statusText);
  1368.       },
  1369.     }
  1370.     this.backgroundChecker.checkForUpdates(listener, false);
  1371.   },
  1372.   
  1373.   /**
  1374.    * Determine whether or not an update requires user confirmation before it
  1375.    * can be installed.
  1376.    * @param   update
  1377.    *          The update to be installed
  1378.    * @returns true if a prompt UI should be shown asking the user if they want
  1379.    *          to install the update, false if the update should just be 
  1380.    *          silently downloaded and installed.
  1381.    */
  1382.   _shouldPrompt: function(update) {
  1383.     // There are two possible outcomes here:
  1384.     // 1. download and install the update automatically
  1385.     // 2. alert the user about the presence of an update before doing anything
  1386.     //
  1387.     // The outcome we follow is determined as follows:
  1388.     // 
  1389.     // Note:  all Major updates require notification and confirmation
  1390.     // 
  1391.     // Update Type      Mode      Incompatible    Outcome
  1392.     // Major            0         Yes or No       Notify and Confirm
  1393.     // Major            1         No              Notify and Confirm
  1394.     // Major            1         Yes             Notify and Confirm
  1395.     // Major            2         Yes or No       Notify and Confirm
  1396.     // Minor            0         Yes or No       Auto Install
  1397.     // Minor            1         No              Auto Install
  1398.     // Minor            1         Yes             Notify and Confirm
  1399.     // Minor            2         No              Auto Install
  1400.     // Minor            2         Yes             Notify and Confirm
  1401.     //
  1402.     // In addition, if there is a license associated with an update, regardless
  1403.     // of type it must be agreed to. 
  1404.     //
  1405.     // If app.update.enabled is set to false, an update check is not performed
  1406.     // at all, and so none of the decision making above is entered into.
  1407.     //
  1408.     if (update.type == "major") {
  1409.       LOG("Checker", "_shouldPrompt: Prompting because it is a major update");
  1410.       return true;
  1411.     }
  1412.  
  1413.     update.QueryInterface(Components.interfaces.nsIPropertyBag);
  1414.     try {
  1415.       var licenseAccepted = update.getProperty("licenseAccepted") == "true";
  1416.     }
  1417.     catch (e) {
  1418.       licenseAccepted = false;
  1419.     }
  1420.  
  1421.     var updateEnabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true);
  1422.     if (!updateEnabled) {
  1423.       LOG("Checker", "_shouldPrompt: Not prompting because update is " + 
  1424.           "disabled");
  1425.       return false;
  1426.     }
  1427.     
  1428.     // User has turned off automatic download and install
  1429.     var autoEnabled = getPref("getBoolPref", PREF_APP_UPDATE_AUTO, true);
  1430.     if (!autoEnabled) {
  1431.       LOG("Checker", "_shouldPrompt: Prompting because auto install is disabled");
  1432.       return true;
  1433.     }
  1434.     
  1435.     switch (getPref("getIntPref", PREF_APP_UPDATE_MODE, 1)) {
  1436.     case 1:
  1437.       // Mode 1 is do not prompt only if there are no incompatibilities
  1438.       // releases
  1439.       LOG("Checker", "_shouldPrompt: Prompting if there are incompatibilities");
  1440.       return !isCompatible(update);
  1441.     case 2:
  1442.       // Mode 2 is do not prompt only if there are no incompatibilities
  1443.       LOG("Checker", "_shouldPrompt: Prompting if there are incompatibilities");
  1444.       return !isCompatible(update);
  1445.     }
  1446.     // Mode 0 is do not prompt regardless of incompatibilities
  1447.     LOG("Checker", "_shouldPrompt: Not prompting the user - they choose to " +
  1448.         "ignore incompatibilities");
  1449.     return false;
  1450.   },
  1451.   
  1452.   /**
  1453.    * Determine which of the specified updates should be installed.
  1454.    * @param   updates
  1455.    *          An array of available updates
  1456.    */
  1457.   selectUpdate: function(updates) {
  1458.     if (updates.length == 0)
  1459.       return null;
  1460.     
  1461.     // Choose the newest of the available minor and major updates. 
  1462.     var majorUpdate = null, minorUpdate = null;
  1463.     var newestMinor = updates[0], newestMajor = updates[0];
  1464.  
  1465.     var vc = Components.classes["@mozilla.org/xpcom/version-comparator;1"]
  1466.                        .getService(Components.interfaces.nsIVersionComparator);
  1467.     for (var i = 0; i < updates.length; ++i) {
  1468.       if (updates[i].type == "major" && 
  1469.           vc.compare(newestMajor.version, updates[i].version) <= 0)
  1470.         majorUpdate = newestMajor = updates[i];
  1471.       if (updates[i].type == "minor" && 
  1472.           vc.compare(newestMinor.version, updates[i].version) <= 0)
  1473.         minorUpdate = newestMinor = updates[i];
  1474.     }
  1475.  
  1476.     // IMPORTANT
  1477.     // If there's a minor update, always try and fetch that one first, 
  1478.     // otherwise use the newest major update.
  1479.     // selectUpdate() only returns one update.
  1480.     // if major were to trump minor, and we said "never" to the major
  1481.     // we'd never get the minor update, since selectUpdate()
  1482.     // would return the major update that the user said "never" to
  1483.     // (shadowing the important minor update with security fixes)
  1484.     return minorUpdate || majorUpdate;
  1485.   },
  1486.   
  1487.   /**
  1488.    * Determine which of the specified updates should be installed and
  1489.    * begin the download/installation process, optionally prompting the
  1490.    * user for permission if required.
  1491.    * @param   updates
  1492.    *          An array of available updates
  1493.    */
  1494.   _selectAndInstallUpdate: function(updates) {
  1495.     // Don't prompt if there's an active update - the user is already 
  1496.     // aware and is downloading, or performed some user action to prevent
  1497.     // notification.
  1498.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  1499.                        .getService(Components.interfaces.nsIUpdateManager);
  1500.     if (um.activeUpdate)
  1501.       return;
  1502.     
  1503.     var update = this.selectUpdate(updates, updates.length);
  1504.     if (!update)
  1505.       return;
  1506.  
  1507.     // check if the user said "never" to this version
  1508.     // this check is done here, and not in selectUpdate() so that
  1509.     // the user can get an upgrade they said "never" to if they
  1510.     // manually do "Check for Updates..."
  1511.     // note, selectUpdate() only returns one update.
  1512.     // but in selectUpdate(), minor updates trump major updates
  1513.     // if major trumps minor, and we said "never" to the major
  1514.     // we'd never see the minor update.
  1515.     // 
  1516.     // note, the never decision should only apply to major updates
  1517.     // see bug #350636 for a scenario where this could potentially
  1518.     // be an issue
  1519.     var neverPrefName = PREF_UPDATE_NEVER_BRANCH + update.version;
  1520.     var never = getPref("getBoolPref", neverPrefName, false);
  1521.     if (never && update.type == "major")
  1522.       return;
  1523.  
  1524.     if (this._shouldPrompt(update))
  1525.       showPromptIfNoIncompatibilities(update);
  1526.     else {
  1527.       LOG("UpdateService", "_selectAndInstallUpdate: No need to show prompt, just download update");
  1528.       var status = this.downloadUpdate(update, true);
  1529.       if (status == STATE_NONE)
  1530.         cleanupActiveUpdate();
  1531.     }
  1532.   },
  1533.  
  1534.   /**
  1535.    * The Checker used for background update checks.
  1536.    */
  1537.   _backgroundChecker: null,
  1538.   
  1539.   /**
  1540.    * See nsIUpdateService.idl
  1541.    */
  1542.   get backgroundChecker() {
  1543.     if (!this._backgroundChecker) 
  1544.       this._backgroundChecker = new Checker();
  1545.     return this._backgroundChecker;
  1546.   },
  1547.   
  1548.   /**
  1549.    * See nsIUpdateService.idl
  1550.    */
  1551.   get canUpdate() {
  1552.     try {
  1553.       var appDirFile = getUpdateFile([FILE_PERMS_TEST]);
  1554.       LOG("UpdateService", "canUpdate?  testing " + appDirFile.path);
  1555.       if (!appDirFile.exists()) {
  1556.         appDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1557.         appDirFile.remove(false);
  1558.       }
  1559.       var updateDir = getUpdatesDir();
  1560.       var upDirFile = updateDir.clone();
  1561.       upDirFile.append(FILE_PERMS_TEST);
  1562.       LOG("UpdateService", "canUpdate?  testing " + upDirFile.path);
  1563.       if (!upDirFile.exists()) {
  1564.         upDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1565.         upDirFile.remove(false);
  1566.       }
  1567. //@line 1540 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1568.       var sysInfo = 
  1569.         Components.classes["@mozilla.org/system-info;1"]
  1570.                   .getService(Components.interfaces.nsIPropertyBag2);
  1571.   
  1572.       // On Windows, we no longer store the update under the app dir
  1573.       // if the app dir is under C:\Program Files. 
  1574.       //
  1575.       // If we are on Windows, but not Vista, we need to check that
  1576.       // we can create and remove files from the actual app directory
  1577.       // (like C:\Program Files\Mozilla Firefox).  If we can't,
  1578.       // because this user is not an adminstrator, for example
  1579.       // canUpdate() should return false (like it used to).
  1580.       // 
  1581.       // For Vista, don't perform this check because non-admin users
  1582.       // can update firefox (by granting the updater access via the 
  1583.       // UAC prompt)
  1584.       var windowsVersion = sysInfo.getProperty("version");
  1585.       LOG("UpdateService", "canUpdate?  version = " + windowsVersion);
  1586.       // Example windowsVersion:  Windows XP == 5.1
  1587.       if (parseFloat(windowsVersion) < 6) {
  1588.         var actualAppDir = getDir(KEY_APPDIR, []);
  1589.         var actualAppDirFile = actualAppDir.clone();
  1590.         actualAppDirFile.append(FILE_PERMS_TEST);
  1591.         LOG("UpdateService", "canUpdate?  testing " + actualAppDirFile.path);
  1592.         if (!actualAppDirFile.exists()) {
  1593.           actualAppDirFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1594.           actualAppDirFile.remove(false);
  1595.         }
  1596.       }
  1597. //@line 1570 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  1598.     }
  1599.     catch (e) {
  1600.        LOG("UpdateService", "can't update, no privileges: " + e);
  1601.       // No write privileges to install directory
  1602.       return false;
  1603.     }
  1604.     // If the administrator has locked the app update functionality 
  1605.     // OFF - this is not just a user setting, so disable the manual
  1606.     // UI too.
  1607.     var enabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true);
  1608.     if (!enabled && gPref.prefIsLocked(PREF_APP_UPDATE_ENABLED)) {
  1609.       LOG("UpdateService", "can't update, disabled by pref");
  1610.       return false;
  1611.     }
  1612.  
  1613.     // If we don't know the binary platform we're updating, we can't update.
  1614.     if (!gABI) {
  1615.       LOG("UpdateService", "can't update, unknown ABI");
  1616.       return false;
  1617.     }
  1618.  
  1619.     // If we don't know the OS version we're updating, we can't update.
  1620.     if (!gOSVersion) {
  1621.       LOG("UpdateService", "can't update, unknown OS version");
  1622.       return false;
  1623.     }
  1624.  
  1625.     LOG("UpdateService", "can update");
  1626.     return true;
  1627.   },
  1628.   
  1629.   /**
  1630.    * See nsIUpdateService.idl
  1631.    */
  1632.   addDownloadListener: function(listener) {
  1633.     if (!this._downloader) {
  1634.       LOG("UpdateService", "addDownloadListener: no downloader!\n");
  1635.       return;
  1636.     }
  1637.     this._downloader.addDownloadListener(listener);
  1638.   },
  1639.   
  1640.   /**
  1641.    * See nsIUpdateService.idl
  1642.    */
  1643.   removeDownloadListener: function(listener) {
  1644.     if (!this._downloader) {
  1645.       LOG("UpdateService", "removeDownloadListener: no downloader!\n");
  1646.       return;
  1647.     }
  1648.     this._downloader.removeDownloadListener(listener);
  1649.   },
  1650.   
  1651.   /**
  1652.    * See nsIUpdateService.idl
  1653.    */
  1654.   downloadUpdate: function(update, background) {
  1655.     if (!update)
  1656.       throw Components.results.NS_ERROR_NULL_POINTER;
  1657.     if (this.isDownloading) {
  1658.       if (update.isCompleteUpdate == this._downloader.isCompleteUpdate &&
  1659.           background == this._downloader.background) {
  1660.         LOG("UpdateService", "no support for downloading more than one update at a time");
  1661.         return readStatusFile(getUpdatesDir());
  1662.       }
  1663.       this._downloader.cancel();
  1664.     }
  1665.     this._downloader = new Downloader(background);
  1666.     return this._downloader.downloadUpdate(update);
  1667.   },
  1668.   
  1669.   /**
  1670.    * See nsIUpdateService.idl
  1671.    */
  1672.   pauseDownload: function() {
  1673.     if (this.isDownloading)
  1674.       this._downloader.cancel();
  1675.   },
  1676.   
  1677.   /**
  1678.    * See nsIUpdateService.idl
  1679.    */
  1680.   get isDownloading() {
  1681.     return this._downloader && this._downloader.isBusy;
  1682.   },
  1683.   
  1684.   startupPing: function() {
  1685.     var listener = {
  1686.       onProgress: function(request, position, totalSize) {
  1687.       },
  1688.       onCheckComplete: function(request, updates, updateCount) {
  1689.       },
  1690.       onError: function(request, update) {
  1691.       },
  1692.     };
  1693.  
  1694.     checker = new Checker();
  1695.     checker._ping_only = true;
  1696.     checker.checkForUpdates(listener, false);
  1697.   },
  1698.  
  1699.   /**
  1700.    * See nsISupports.idl
  1701.    */
  1702.   QueryInterface: function(iid) {
  1703.     if (!iid.equals(Components.interfaces.nsIApplicationUpdateService) &&
  1704.         !iid.equals(Components.interfaces.nsITimerCallback) && 
  1705.         !iid.equals(Components.interfaces.nsIObserver) && 
  1706.         !iid.equals(Components.interfaces.nsISupports))
  1707.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1708.     return this;
  1709.   }
  1710. };
  1711.  
  1712. /**
  1713.  * A service to manage active and past updates.
  1714.  * @constructor
  1715.  */
  1716. function UpdateManager() {
  1717.   // Ensure the Active Update file is loaded
  1718.   var updates = this._loadXMLFileIntoArray(getUpdateFile([FILE_UPDATE_ACTIVE]));
  1719.   if (updates.length > 0)
  1720.     this._activeUpdate = updates[0];
  1721. }
  1722. UpdateManager.prototype = {
  1723.   /**
  1724.    * All previously downloaded and installed updates, as an array of nsIUpdate
  1725.    * objects.
  1726.    */
  1727.   _updates: null,
  1728.   
  1729.   /**
  1730.    * The current actively downloading/installing update, as a nsIUpdate object.
  1731.    */
  1732.   _activeUpdate: null,
  1733.   
  1734.   /**
  1735.    * Loads an updates.xml formatted file into an array of nsIUpdate items.
  1736.    * @param   file
  1737.    *          A nsIFile for the updates.xml file
  1738.    * @returns The array of nsIUpdate items held in the file.
  1739.    */
  1740.   _loadXMLFileIntoArray: function(file) {
  1741.     if (!file.exists()) {
  1742.       LOG("UpdateManager", "_loadXMLFileIntoArray: XML File does not exist");
  1743.       return [];
  1744.     }
  1745.  
  1746.     var result = [];
  1747.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"]
  1748.                                .createInstance(Components.interfaces.nsIFileInputStream);
  1749.     fileStream.init(file, MODE_RDONLY, PERMS_FILE, 0);
  1750.     try {
  1751.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  1752.                             .createInstance(Components.interfaces.nsIDOMParser);
  1753.       var doc = parser.parseFromStream(fileStream, "UTF-8", fileStream.available(), "text/xml");
  1754.       
  1755.       var updateCount = doc.documentElement.childNodes.length;
  1756.       for (var i = 0; i < updateCount; ++i) {
  1757.         var updateElement = doc.documentElement.childNodes.item(i);
  1758.         if (updateElement.nodeType != Node.ELEMENT_NODE ||
  1759.             updateElement.localName != "update")
  1760.           continue;
  1761.  
  1762.         updateElement.QueryInterface(Components.interfaces.nsIDOMElement);
  1763.         try {
  1764.           var update = new Update(updateElement);
  1765.         } catch (e) {
  1766.           LOG("UpdateManager", "_loadXMLFileIntoArray: invalid update");
  1767.           continue;
  1768.         }
  1769.         result.push(new Update(updateElement));
  1770.       }
  1771.     }
  1772.     catch (e) {
  1773.       LOG("UpdateManager", "_loadXMLFileIntoArray: Error constructing update list " + 
  1774.           e);
  1775.     }
  1776.     fileStream.close();
  1777.     return result;
  1778.   },
  1779.   
  1780.   /**
  1781.    * Load the update manager, initializing state from state files.
  1782.    */
  1783.   _ensureUpdates: function() {
  1784.     if (!this._updates) {
  1785.       this._updates = this._loadXMLFileIntoArray(getUpdateFile(
  1786.                         [FILE_UPDATES_DB]));
  1787.  
  1788.       // Make sure that any active update is part of our updates list
  1789.       var active = this.activeUpdate;
  1790.       if (active)
  1791.         this._addUpdate(active);
  1792.     }
  1793.   },
  1794.  
  1795.   /**
  1796.    * See nsIUpdateService.idl
  1797.    */
  1798.   getUpdateAt: function(index) {
  1799.     this._ensureUpdates();
  1800.     return this._updates[index];
  1801.   },
  1802.   
  1803.   /**
  1804.    * See nsIUpdateService.idl
  1805.    */
  1806.   get updateCount() {
  1807.     this._ensureUpdates();
  1808.     return this._updates.length;
  1809.   },
  1810.   
  1811.   /**
  1812.    * See nsIUpdateService.idl
  1813.    */
  1814.   get activeUpdate() {
  1815.     if (this._activeUpdate) {
  1816.       this._activeUpdate.QueryInterface(Components.interfaces.nsIUpdate_MOZILLA_1_8_BRANCH);
  1817.       if (this._activeUpdate.channel != getUpdateChannel()) {
  1818.         // User switched channels, clear out any old active updates and remove
  1819.         // partial downloads
  1820.         this._activeUpdate = null;
  1821.       
  1822.         // Destroy the updates directory, since we're done with it.
  1823.         cleanUpUpdatesDir();
  1824.       }
  1825.     }
  1826.     return this._activeUpdate;
  1827.   },
  1828.   set activeUpdate(activeUpdate) {
  1829.     this._addUpdate(activeUpdate);
  1830.     this._activeUpdate = activeUpdate;
  1831.     if (!activeUpdate) {
  1832.       // If |activeUpdate| is null, we have updated both lists - the active list
  1833.       // and the history list, so we want to write both files.
  1834.       this.saveUpdates();
  1835.     }
  1836.     else
  1837.       this._writeUpdatesToXMLFile([this._activeUpdate], 
  1838.                                   getUpdateFile([FILE_UPDATE_ACTIVE]));
  1839.     return activeUpdate;
  1840.   },
  1841.   
  1842.   /**
  1843.    * Add an update to the Updates list. If the item already exists in the list,
  1844.    * replace the existing value with the new value.
  1845.    * @param   update
  1846.    *          The nsIUpdate object to add.
  1847.    */
  1848.   _addUpdate: function(update) {
  1849.     if (!update)
  1850.       return;
  1851.     this._ensureUpdates();
  1852.     if (this._updates) {
  1853.       for (var i = 0; i < this._updates.length; ++i) {
  1854.         if (this._updates[i] &&
  1855.             this._updates[i].version == update.version &&
  1856.             this._updates[i].buildID == update.buildID) {
  1857.           // Replace the existing entry with the new value, updating
  1858.           // all metadata.
  1859.           this._updates[i] = update;
  1860.           return;
  1861.         }
  1862.       }
  1863.     }
  1864.     // Otherwise add it to the front of the list.
  1865.     if (update) 
  1866.       this._updates = [update].concat(this._updates);
  1867.   },
  1868.   
  1869.   /**
  1870.    * Serializes an array of updates to an XML file
  1871.    * @param   updates
  1872.    *          An array of nsIUpdate objects
  1873.    * @param   file
  1874.    *          The nsIFile object to serialize to
  1875.    */
  1876.   _writeUpdatesToXMLFile: function(updates, file) {
  1877.     var fos = Components.classes["@mozilla.org/network/safe-file-output-stream;1"]
  1878.                         .createInstance(Components.interfaces.nsIFileOutputStream);
  1879.     var modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  1880.     if (!file.exists()) 
  1881.       file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1882.     fos.init(file, modeFlags, PERMS_FILE, 0);
  1883.     
  1884.     try {
  1885.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  1886.                             .createInstance(Components.interfaces.nsIDOMParser);
  1887.       const EMPTY_UPDATES_DOCUMENT = "<?xml version=\"1.0\"?><updates xmlns=\"http://www.mozilla.org/2005/app-update\"></updates>";
  1888.       var doc = parser.parseFromString(EMPTY_UPDATES_DOCUMENT, "text/xml");
  1889.  
  1890.       for (var i = 0; i < updates.length; ++i) {
  1891.         if (updates[i])
  1892.           doc.documentElement.appendChild(updates[i].serialize(doc));
  1893.       }
  1894.  
  1895.       var serializer = Components.classes["@mozilla.org/xmlextras/xmlserializer;1"]
  1896.                                 .createInstance(Components.interfaces.nsIDOMSerializer);
  1897.       serializer.serializeToStream(doc.documentElement, fos, null);
  1898.     }
  1899.     catch (e) {
  1900.     }
  1901.     
  1902.     closeSafeOutputStream(fos);
  1903.   },
  1904.  
  1905.   /**
  1906.    * See nsIUpdateService.idl
  1907.    */
  1908.   saveUpdates: function() {
  1909.     this._writeUpdatesToXMLFile([this._activeUpdate], 
  1910.                                 getUpdateFile([FILE_UPDATE_ACTIVE]));
  1911.     if (this._updates) {
  1912.       this._writeUpdatesToXMLFile(this._updates, 
  1913.                                   getUpdateFile([FILE_UPDATES_DB]));
  1914.     }
  1915.   },
  1916.   
  1917.   /**
  1918.    * See nsISupports.idl
  1919.    */
  1920.   QueryInterface: function(iid) {
  1921.     if (!iid.equals(Components.interfaces.nsIUpdateManager) &&
  1922.         !iid.equals(Components.interfaces.nsISupports))
  1923.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1924.     return this;
  1925.   }
  1926. };
  1927.  
  1928.  
  1929. /**
  1930.  * Checker
  1931.  * Checks for new Updates
  1932.  * @constructor
  1933.  */
  1934. function Checker() {
  1935. }
  1936. Checker.prototype = {
  1937.   /**
  1938.    * The XMLHttpRequest object that performs the connection.
  1939.    */
  1940.   _request  : null,
  1941.   
  1942.   /**
  1943.    * The nsIUpdateCheckListener callback
  1944.    */
  1945.   _callback : null,
  1946.  
  1947.   _ping_only: false,
  1948.  
  1949.   /**
  1950.    * The URL of the update service XML file to connect to that contains details
  1951.    * about available updates.
  1952.    */
  1953.   getUpdateURL: function(force) {
  1954.     this._forced = force;
  1955.  
  1956.     var defaults =
  1957.         gPref.QueryInterface(Components.interfaces.nsIPrefService).
  1958.         getDefaultBranch(null);
  1959.  
  1960.     // Use the override URL if specified.
  1961.     var url = getPref("getCharPref", PREF_APP_UPDATE_URL_OVERRIDE, null);
  1962.  
  1963.     // Otherwise, construct the update URL from component parts.
  1964.     if (!url) {
  1965.       try {
  1966.         url = defaults.getCharPref(PREF_APP_UPDATE_URL);
  1967.       } catch (e) {
  1968.       }
  1969.     }
  1970.  
  1971.     if (!url || url == "") {
  1972.       LOG("Checker", "Update URL not defined");
  1973.       return null;
  1974.     }
  1975.  
  1976.     url = url.replace(/%PRODUCT%/g, gApp.name);
  1977.     url = url.replace(/%VERSION%/g, gApp.version);
  1978.     url = url.replace(/%BUILD_ID%/g, gApp.appBuildID);
  1979.     url = url.replace(/%BUILD_TARGET%/g, gApp.OS + "_" + gABI);
  1980.     url = url.replace(/%OS_VERSION%/g, gOSVersion);
  1981.     url = url.replace(/%LOCALE%/g, getLocale());
  1982.     url = url.replace(/%CHANNEL%/g, getUpdateChannel());
  1983.     url = url.replace(/%USER_UUID%/g, getUserUUID());
  1984.     url = url.replace(/\+/g, "%2B");
  1985.  
  1986.     if (force)
  1987.     url += "?force=1"
  1988.  
  1989.     LOG("Checker", "update url: " + url);
  1990.     return url;
  1991.   },
  1992.   
  1993.   /**
  1994.    * See nsIUpdateService.idl
  1995.    */
  1996.   checkForUpdates: function(listener, force) {
  1997.     if (!listener)
  1998.       throw Components.results.NS_ERROR_NULL_POINTER;
  1999.     
  2000.     if (!this.getUpdateURL(force) || (!this.enabled && !force))
  2001.       return;
  2002.       
  2003.     var updateURL = this.getUpdateURL(force);
  2004.  
  2005.     if (this._ping_only)
  2006.       updateURL = updateURL.replace("/update/", "/install/");
  2007.  
  2008.     this._request = 
  2009.       Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"].
  2010.       createInstance(Components.interfaces.nsIXMLHttpRequest);
  2011.     this._request.open("GET", updateURL, true);
  2012.     this._request.channel.notificationCallbacks = new BadCertHandler();
  2013.     this._request.overrideMimeType("text/xml");
  2014.     this._request.setRequestHeader("Cache-Control", "no-cache");
  2015.     
  2016.     var self = this;
  2017.     this._request.onerror     = function(event) { self.onError(event);    };
  2018.     this._request.onload      = function(event) { self.onLoad(event);     };
  2019.     this._request.onprogress  = function(event) { self.onProgress(event); };
  2020.  
  2021.     LOG("Checker", "checkForUpdates: sending request to " + this.getUpdateURL(force));
  2022.     this._request.send(null);
  2023.     
  2024.     this._callback = listener;
  2025.   },
  2026.   
  2027.   /**
  2028.    * When progress associated with the XMLHttpRequest is received.
  2029.    * @param   event
  2030.    *          The nsIDOMLSProgressEvent for the load.
  2031.    */
  2032.   onProgress: function(event) {
  2033.     LOG("Checker", "onProgress: " + event.position + "/" + event.totalSize);
  2034.     this._callback.onProgress(event.target, event.position, event.totalSize);
  2035.   },
  2036.   
  2037.   /**
  2038.    * Returns an array of nsIUpdate objects discovered by the update check.
  2039.    */
  2040.   get _updates() {
  2041.     var updatesElement = this._request.responseXML.documentElement;
  2042.     if (!updatesElement) {
  2043.       LOG("Checker", "get_updates: empty updates document?!");
  2044.       return [];
  2045.     }
  2046.  
  2047.     if (updatesElement.nodeName != "updates") {
  2048.       LOG("Checker", "get_updates: unexpected node name!");
  2049.       throw "";
  2050.     }
  2051.     
  2052.     var updates = [];
  2053.     for (var i = 0; i < updatesElement.childNodes.length; ++i) {
  2054.       var updateElement = updatesElement.childNodes.item(i);
  2055.       if (updateElement.nodeType != Node.ELEMENT_NODE ||
  2056.           updateElement.localName != "update")
  2057.         continue;
  2058.  
  2059.       updateElement.QueryInterface(Components.interfaces.nsIDOMElement);
  2060.       try {
  2061.         var update = new Update(updateElement);
  2062.       } catch (e) {
  2063.         LOG("Checker", "Invalid <update/>, ignoring...");
  2064.         continue;
  2065.       }
  2066.       update.serviceURL = this.getUpdateURL(this._forced);
  2067.       update.channel = getUpdateChannel();
  2068.       updates.push(update);
  2069.     }
  2070.  
  2071.     return updates;
  2072.   },
  2073.   
  2074.   /**
  2075.    * The XMLHttpRequest succeeded and the document was loaded.
  2076.    * @param   event
  2077.    *          The nsIDOMLSEvent for the load
  2078.    */
  2079.   onLoad: function(event) {
  2080.     LOG("Checker", "onLoad: request completed downloading document");
  2081.     
  2082.     try {
  2083.       checkCert(this._request.channel);
  2084.  
  2085.       // Analyze the resulting DOM and determine the set of updates to install
  2086.       var updates = this._updates;
  2087.       
  2088.       LOG("Checker", "Updates available: " + updates.length);
  2089.       
  2090.       // ... and tell the Update Service about what we discovered.
  2091.       this._callback.onCheckComplete(event.target, updates, updates.length);
  2092.     }
  2093.     catch (e) {
  2094.       LOG("Checker", "There was a problem with the update service URL specified, " + 
  2095.           "either the XML file was malformed or it does not exist at the location " + 
  2096.           "specified. Exception: " + e);
  2097.       var update = new Update(null);
  2098.       update.statusText = getStatusTextFromCode(404, 404);
  2099.       this._callback.onError(event.target, update);
  2100.     }
  2101.  
  2102.     this._request = null;
  2103.   },
  2104.   
  2105.   /**
  2106.    * There was an error of some kind during the XMLHttpRequest
  2107.    * @param   event
  2108.    *          The nsIDOMLSEvent for the load
  2109.    */
  2110.   onError: function(event) {
  2111.     LOG("Checker", "onError: error during load");
  2112.     
  2113.     var request = event.target;
  2114.     try {
  2115.       var status = request.status;
  2116.     }
  2117.     catch (e) {
  2118.       var req = request.channel.QueryInterface(Components.interfaces.nsIRequest);
  2119.       status = req.status;
  2120.     }
  2121.     
  2122.     // If we can't find an error string specific to this status code, 
  2123.     // just use the 200 message from above, which means everything 
  2124.     // "looks" fine but there was probably an XML error or a bogus file.
  2125.     var update = new Update(null);
  2126.     update.statusText = getStatusTextFromCode(status, 200);
  2127.     this._callback.onError(request, update);
  2128.  
  2129.     this._request = null;
  2130.   },
  2131.   
  2132.   /**
  2133.    * Whether or not we are allowed to do update checking.
  2134.    */
  2135.   _enabled: true,
  2136.   
  2137.   /**
  2138.    * See nsIUpdateService.idl
  2139.    */
  2140.   get enabled() {
  2141.     var aus = 
  2142.         Components.classes["@mozilla.org/updates/update-service;1"].
  2143.         getService(Components.interfaces.nsIApplicationUpdateService);
  2144.     var enabled = getPref("getBoolPref", PREF_APP_UPDATE_ENABLED, true) && 
  2145.                   aus.canUpdate && this._enabled;
  2146.     return enabled;
  2147.   },
  2148.   
  2149.   /**
  2150.    * See nsIUpdateService.idl
  2151.    */
  2152.   stopChecking: function(duration) {
  2153.     // Always stop the current check
  2154.     if (this._request)
  2155.       this._request.abort();
  2156.     
  2157.     const nsIUpdateChecker = Components.interfaces.nsIUpdateChecker;
  2158.     switch (duration) {
  2159.     case nsIUpdateChecker.CURRENT_SESSION:
  2160.       this._enabled = false;
  2161.       break;
  2162.     case nsIUpdateChecker.ANY_CHECKS:
  2163.       this._enabled = false;
  2164.       gPref.setBoolPref(PREF_APP_UPDATE_ENABLED, this._enabled);
  2165.       break;
  2166.     }
  2167.   },
  2168.   
  2169.   /**
  2170.    * See nsISupports.idl
  2171.    */
  2172.   QueryInterface: function(iid) {
  2173.     if (!iid.equals(Components.interfaces.nsIUpdateChecker) &&
  2174.         !iid.equals(Components.interfaces.nsISupports))
  2175.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2176.     return this;
  2177.   }
  2178. };
  2179.  
  2180. /**
  2181.  * Manages the download of updates
  2182.  * @param   background
  2183.  *          Whether or not this downloader is operating in background
  2184.  *          update mode. 
  2185.  * @constructor
  2186.  */
  2187. function Downloader(background) {
  2188.   this.background = background;
  2189. }
  2190. Downloader.prototype = {
  2191.   /**
  2192.    * The nsIUpdatePatch that we are downloading
  2193.    */
  2194.   _patch: null,
  2195.   
  2196.   /**
  2197.    * The nsIUpdate that we are downloading
  2198.    */
  2199.   _update: null,
  2200.   
  2201.   /**
  2202.    * The nsIIncrementalDownload object handling the download
  2203.    */
  2204.   _request: null,
  2205.  
  2206.   /**
  2207.    * Whether or not the update being downloaded is a complete replacement of
  2208.    * the user's existing installation or a patch representing the difference
  2209.    * between the new version and the previous version.
  2210.    */
  2211.   isCompleteUpdate: null,
  2212.  
  2213.   /**
  2214.    * Cancels the active download.
  2215.    */  
  2216.   cancel: function() {
  2217.     if (this._request && 
  2218.         this._request instanceof Components.interfaces.nsIRequest) {
  2219.       const NS_BINDING_ABORTED = 0x804b0002;
  2220.       this._request.cancel(NS_BINDING_ABORTED);
  2221.     }
  2222.   },
  2223.  
  2224.   /**
  2225.    * Whether or not a patch has been downloaded and staged for installation.
  2226.    */
  2227.   get patchIsStaged() {
  2228.     return readStatusFile(getUpdatesDir()) == STATE_PENDING;
  2229.   },
  2230.  
  2231.   /**
  2232.    * Verify the downloaded file.  We assume that the download is complete at
  2233.    * this point.
  2234.    */
  2235.   _verifyDownload: function() {
  2236.     if (!this._request)
  2237.       return false;
  2238.  
  2239.     var destination = this._request.destination;
  2240.  
  2241.     // Ensure that the file size matches the expected file size.
  2242.     if (destination.fileSize != this._patch.size)
  2243.       return false;
  2244.  
  2245.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"].
  2246.         createInstance(nsIFileInputStream);
  2247.     fileStream.init(destination, MODE_RDONLY, PERMS_FILE, 0);
  2248.  
  2249.     try {
  2250.       var hash = Components.classes["@mozilla.org/security/hash;1"].
  2251.           createInstance(nsICryptoHash);
  2252.       var hashFunction = nsICryptoHash[this._patch.hashFunction.toUpperCase()];
  2253.       if (hashFunction == undefined)
  2254.         throw Components.results.NS_ERROR_UNEXPECTED;
  2255.       hash.init(hashFunction);
  2256.       hash.updateFromStream(fileStream, -1);
  2257.       // NOTE: For now, we assume that the format of _patch.hashValue is hex
  2258.       // encoded binary (such as what is typically output by programs like
  2259.       // sha1sum).  In the future, this may change to base64 depending on how
  2260.       // we choose to compute these hashes.
  2261.       digest = binaryToHex(hash.finish(false));
  2262.     } catch (e) {
  2263.       LOG("Downloader", "failed to compute hash of downloaded update archive");
  2264.       digest = "";
  2265.     }
  2266.  
  2267.     fileStream.close();
  2268.  
  2269.     return digest == this._patch.hashValue.toLowerCase();
  2270.   },
  2271.  
  2272.   /**
  2273.    * Select the patch to use given the current state of updateDir and the given
  2274.    * set of update patches.
  2275.    * @param   update
  2276.    *          A nsIUpdate object to select a patch from
  2277.    * @param   updateDir
  2278.    *          A nsIFile representing the update directory
  2279.    * @returns A nsIUpdatePatch object to download
  2280.    */
  2281.   _selectPatch: function(update, updateDir) {
  2282.     // Given an update to download, we will always try to download the patch
  2283.     // for a partial update over the patch for a full update.
  2284.  
  2285.     /**
  2286.      * Return the first UpdatePatch with the given type.
  2287.      * @param   type
  2288.      *          The type of the patch ("complete" or "partial")
  2289.      * @returns A nsIUpdatePatch object matching the type specified
  2290.      */
  2291.     function getPatchOfType(type) {
  2292.       for (var i = 0; i < update.patchCount; ++i) {
  2293.         var patch = update.getPatchAt(i);
  2294.         if (patch && patch.type == type)
  2295.           return patch;
  2296.       }
  2297.       return null;
  2298.     }
  2299.  
  2300.     // Look to see if any of the patches in the Update object has been
  2301.     // pre-selected for download, otherwise we must figure out which one
  2302.     // to select ourselves. 
  2303.     var selectedPatch = update.selectedPatch;
  2304.     
  2305.     var state = readStatusFile(updateDir)
  2306.  
  2307.     // If this is a patch that we know about, then select it.  If it is a patch
  2308.     // that we do not know about, then remove it and use our default logic.
  2309.     var useComplete = false;
  2310.     if (selectedPatch) {
  2311.       LOG("Downloader", "found existing patch [state="+state+"]");
  2312.       switch (state) {
  2313.       case STATE_DOWNLOADING: 
  2314.         LOG("Downloader", "resuming download");
  2315.         return selectedPatch;
  2316.       case STATE_PENDING:
  2317.         LOG("Downloader", "already downloaded and staged");
  2318.         return null;
  2319.       default:
  2320.         // Something went wrong when we tried to apply the previous patch.
  2321.         // Try the complete patch next time.
  2322.         if (update && selectedPatch.type == "partial") {
  2323.           useComplete = true;
  2324.         } else {
  2325.           // This is a pretty fatal error.  Just bail.
  2326.           LOG("Downloader", "failed to apply complete patch!");
  2327.           writeStatusFile(updateDir, STATE_NONE);
  2328.           return null;
  2329.         }
  2330.       }
  2331.  
  2332.       selectedPatch = null;
  2333.     }
  2334.     
  2335.     // If we were not able to discover an update from a previous download, we 
  2336.     // select the best patch from the given set.
  2337.     var partialPatch = getPatchOfType("partial");
  2338.     if (!useComplete)
  2339.       selectedPatch = partialPatch;
  2340.     if (!selectedPatch) {
  2341.       if (partialPatch)
  2342.         partialPatch.selected = false;
  2343.       selectedPatch = getPatchOfType("complete");
  2344.     }
  2345.  
  2346.     // Restore the updateDir since we may have deleted it.
  2347.     updateDir = getUpdatesDir();
  2348.  
  2349.     // if update only contains a partial patch, selectedPatch == null here if
  2350.     // the partial patch has been attempted and fails and we're trying to get a
  2351.     // complete patch
  2352.     if (selectedPatch)    
  2353.       selectedPatch.selected = true;
  2354.  
  2355.     update.isCompleteUpdate = useComplete;
  2356.     
  2357.     // Reset the Active Update object on the Update Manager and flush the
  2358.     // Active Update DB. 
  2359.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  2360.                        .getService(Components.interfaces.nsIUpdateManager);
  2361.     um.activeUpdate = update;
  2362.  
  2363.     return selectedPatch;
  2364.   },
  2365.  
  2366.   /**
  2367.    * Whether or not we are currently downloading something.
  2368.    */
  2369.   get isBusy() {
  2370.     return this._request != null;
  2371.   },
  2372.   
  2373.   /**
  2374.    * Download and stage the given update.
  2375.    * @param   update
  2376.    *          A nsIUpdate object to download a patch for. Cannot be null.
  2377.    */
  2378.   downloadUpdate: function(update) {
  2379.     if (!update)
  2380.       throw Components.results.NS_ERROR_NULL_POINTER;
  2381.     
  2382.     var updateDir = getUpdatesDir();
  2383.  
  2384.     this._update = update;
  2385.  
  2386.     // This function may return null, which indicates that there are no patches
  2387.     // to download.
  2388.     this._patch = this._selectPatch(update, updateDir);
  2389.     if (!this._patch) {
  2390.       LOG("Downloader", "no patch to download");
  2391.       return readStatusFile(updateDir);
  2392.     }
  2393.     this.isCompleteUpdate = this._patch.type == "complete";
  2394.  
  2395.     var patchFile = updateDir.clone();
  2396.     patchFile.append(FILE_UPDATE_ARCHIVE);
  2397.  
  2398.     var ios = Components.classes["@mozilla.org/network/io-service;1"].
  2399.         getService(Components.interfaces.nsIIOService);
  2400.     var uri = ios.newURI(this._patch.URL, null, null);
  2401.  
  2402.     this._request =
  2403.         Components.classes["@mozilla.org/network/incremental-download;1"].
  2404.         createInstance(nsIIncrementalDownload);
  2405.  
  2406.     LOG("Downloader", "downloadUpdate: Downloading from " + uri.spec + " to " + 
  2407.         patchFile.path);
  2408.  
  2409.     var interval = this.background ? DOWNLOAD_BACKGROUND_INTERVAL
  2410.                                    : DOWNLOAD_FOREGROUND_INTERVAL;
  2411.     this._request.init(uri, patchFile, DOWNLOAD_CHUNK_SIZE, interval);
  2412.     this._request.start(this, null);
  2413.  
  2414.     writeStatusFile(updateDir, STATE_DOWNLOADING);
  2415.     this._patch.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2416.     this._patch.state = STATE_DOWNLOADING;
  2417.     var um = Components.classes["@mozilla.org/updates/update-manager;1"]
  2418.                        .getService(Components.interfaces.nsIUpdateManager);
  2419.     um.saveUpdates();
  2420.     return STATE_DOWNLOADING;
  2421.   },
  2422.   
  2423.   /**
  2424.    * An array of download listeners to notify when we receive 
  2425.    * nsIRequestObserver or nsIProgressEventSink method calls.
  2426.    */
  2427.   _listeners: [],
  2428.  
  2429.   /** 
  2430.    * Adds a listener to the download process
  2431.    * @param   listener
  2432.    *          A download listener, implementing nsIRequestObserver and
  2433.    *          nsIProgressEventSink
  2434.    */
  2435.   addDownloadListener: function(listener) {
  2436.     for (var i = 0; i < this._listeners.length; ++i) {
  2437.       if (this._listeners[i] == listener)
  2438.         return;
  2439.     }
  2440.     this._listeners.push(listener);
  2441.   },
  2442.   
  2443.   /** 
  2444.    * Removes a download listener
  2445.    * @param   listener
  2446.    *          The listener to remove.
  2447.    */
  2448.   removeDownloadListener: function(listener) {
  2449.     for (var i = 0; i < this._listeners.length; ++i) {
  2450.       if (this._listeners[i] == listener) {
  2451.         this._listeners.splice(i, 1);
  2452.         return;
  2453.       }
  2454.     }
  2455.   },
  2456.   
  2457.   /**
  2458.    * When the async request begins
  2459.    * @param   request
  2460.    *          The nsIRequest object for the transfer
  2461.    * @param   context
  2462.    *          Additional data
  2463.    */
  2464.   onStartRequest: function(request, context) {
  2465.     request.QueryInterface(nsIIncrementalDownload);
  2466.     LOG("Downloader", "onStartRequest: " + request.URI.spec);
  2467.     
  2468.     var listenerCount = this._listeners.length;
  2469.     for (var i = 0; i < listenerCount; ++i)
  2470.       this._listeners[i].onStartRequest(request, context);
  2471.   },
  2472.   
  2473.   /** 
  2474.    * When new data has been downloaded
  2475.    * @param   request
  2476.    *          The nsIRequest object for the transfer
  2477.    * @param   context
  2478.    *          Additional data
  2479.    * @param   progress
  2480.    *          The current number of bytes transferred
  2481.    * @param   maxProgress
  2482.    *          The total number of bytes that must be transferred
  2483.    */
  2484.   onProgress: function(request, context, progress, maxProgress) {
  2485.     request.QueryInterface(nsIIncrementalDownload);
  2486.     LOG("Downloader.onProgress", "onProgress: " + request.URI.spec + ", " + progress + "/" + maxProgress);
  2487.     
  2488.     var listenerCount = this._listeners.length;
  2489.     for (var i = 0; i < listenerCount; ++i) {
  2490.       var listener = this._listeners[i];
  2491.       if (listener instanceof Components.interfaces.nsIProgressEventSink)
  2492.         listener.onProgress(request, context, progress, maxProgress);
  2493.     }
  2494.   },
  2495.   
  2496.   /** 
  2497.    * When we have new status text
  2498.    * @param   request
  2499.    *          The nsIRequest object for the transfer
  2500.    * @param   context
  2501.    *          Additional data
  2502.    * @param   status
  2503.    *          A status code
  2504.    * @param   statusText
  2505.    *          Human readable version of |status|
  2506.    */
  2507.   onStatus: function(request, context, status, statusText) {
  2508.     request.QueryInterface(nsIIncrementalDownload);
  2509.     LOG("Downloader", "onStatus: " + request.URI.spec + " status = " + status + ", text = " + statusText);
  2510.     var listenerCount = this._listeners.length;
  2511.     for (var i = 0; i < listenerCount; ++i) {
  2512.       var listener = this._listeners[i];
  2513.       if (listener instanceof Components.interfaces.nsIProgressEventSink)
  2514.         listener.onStatus(request, context, status, statusText);
  2515.     }
  2516.   },
  2517.   
  2518.   /** 
  2519.    * When data transfer ceases
  2520.    * @param   request
  2521.    *          The nsIRequest object for the transfer
  2522.    * @param   context
  2523.    *          Additional data
  2524.    * @param   status
  2525.    *          Status code containing the reason for the cessation.
  2526.    */
  2527.   onStopRequest: function(request, context, status) {
  2528.     request.QueryInterface(nsIIncrementalDownload);
  2529.     LOG("Downloader", "onStopRequest: " + request.URI.spec + ", status = " + status);
  2530.  
  2531.     var state = this._patch.state;
  2532.     var shouldShowPrompt = false;
  2533.     var deleteActiveUpdate = false;
  2534.     const NS_BINDING_ABORTED = 0x804b0002;
  2535.     const NS_ERROR_ABORT = 0x80004004;
  2536.     if (Components.isSuccessCode(status)) {
  2537.       var sbs = 
  2538.           Components.classes["@mozilla.org/intl/stringbundle;1"].
  2539.           getService(Components.interfaces.nsIStringBundleService);
  2540.       var updateStrings = sbs.createBundle(URI_UPDATES_PROPERTIES);
  2541.       if (this._verifyDownload()) {
  2542.         state = STATE_PENDING;
  2543.         
  2544.         // We only need to explicitly show the prompt if this is a backround
  2545.         // download, since otherwise some kind of UI is already visible and 
  2546.         // that UI will notify. 
  2547.         if (this.background)
  2548.           shouldShowPrompt = true;
  2549.         
  2550.         // Tell the updater.exe we're ready to apply.
  2551.         writeStatusFile(getUpdatesDir(), state);
  2552.         this._update.installDate = (new Date()).getTime();
  2553.         this._update.statusText = updateStrings.
  2554.           GetStringFromName("installPending");
  2555.       } else {
  2556.         LOG("Downloader", "onStopRequest: download verification failed");
  2557.         state = STATE_DOWNLOAD_FAILED;
  2558.         
  2559.         var brandStrings = sbs.createBundle(URI_BRAND_PROPERTIES);
  2560.         var brandShortName = brandStrings.GetStringFromName("brandShortName");
  2561.         this._update.statusText = updateStrings.
  2562.           formatStringFromName("verificationError", [brandShortName], 1);
  2563.         
  2564.         // TODO: use more informative error code here
  2565.         status = Components.results.NS_ERROR_UNEXPECTED;
  2566.         
  2567.         var message = getStatusTextFromCode("verification_failed", 
  2568.           "verification_failed");
  2569.         this._update.statusText = message;
  2570.         
  2571.         if (this._update.isCompleteUpdate)
  2572.           deleteActiveUpdate = true;
  2573.  
  2574.         // Destroy the updates directory, since we're done with it.
  2575.         cleanUpUpdatesDir();
  2576.       }
  2577.     }
  2578.     else if (status != NS_BINDING_ABORTED &&
  2579.              status != NS_ERROR_ABORT) {
  2580.       LOG("Downloader", "onStopRequest: Non-verification failure");
  2581.       // Some sort of other failure, log this in the |statusText| property
  2582.       state = STATE_DOWNLOAD_FAILED;
  2583.       
  2584.       // XXXben - if |request| (The Incremental Download) provided a means
  2585.       // for accessing the http channel we could do more here.
  2586.       
  2587.       const NS_BINDING_FAILED = 2152398849;
  2588.       this._update.statusText = getStatusTextFromCode(status, 
  2589.         NS_BINDING_FAILED);
  2590.       
  2591.       // Destroy the updates directory, since we're done with it.
  2592.       cleanUpUpdatesDir();
  2593.       
  2594.       deleteActiveUpdate = true;
  2595.     }
  2596.     LOG("Downloader", "Setting state to: " + state);
  2597.     this._patch.state = state;
  2598.     var um = 
  2599.         Components.classes["@mozilla.org/updates/update-manager;1"].
  2600.         getService(Components.interfaces.nsIUpdateManager);
  2601.     if (deleteActiveUpdate) {
  2602.       this._update.installDate = (new Date()).getTime();
  2603.       um.activeUpdate = null;
  2604.     }
  2605.     um.saveUpdates();
  2606.     
  2607.     var listenerCount = this._listeners.length;
  2608.     for (var i = 0; i < listenerCount; ++i)
  2609.       this._listeners[i].onStopRequest(request, context, status);
  2610.  
  2611.     this._request = null;
  2612.     
  2613.     if (state == STATE_DOWNLOAD_FAILED) {
  2614.       if (!this._update.isCompleteUpdate) {
  2615.         var allFailed = true;
  2616.   
  2617.         // If we were downloading a patch and the patch verification phase 
  2618.         // failed, log this and then commence downloading the complete update.
  2619.         LOG("Downloader", "onStopRequest: Verification of patch failed, downloading complete update");
  2620.         this._update.isCompleteUpdate = true;
  2621.         var status = this.downloadUpdate(this._update);
  2622.  
  2623.         if (status == STATE_NONE) {
  2624.           cleanupActiveUpdate();
  2625.         } else {
  2626.           allFailed = false;
  2627.         }
  2628.         // This will reset the |.state| property on this._update if a new 
  2629.         // download initiates.
  2630.       }
  2631.     
  2632.       // if we still fail after trying a complete download, give up completely
  2633.       if (allFailed) {
  2634.         // In all other failure cases, i.e. we're S.O.L. - no more failing over
  2635.         // ...
  2636.         
  2637.         // If this was ever a foreground download, and now there is no UI active
  2638.         // (e.g. because the user closed the download window) and there was an
  2639.         // error, we must notify now. Otherwise we can keep the failure to 
  2640.         // ourselves since the user won't be expecting it. 
  2641.         try {
  2642.           this._update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2643.           var fgdl = this._update.getProperty("foregroundDownload");
  2644.         }
  2645.         catch (e) {
  2646.         }
  2647.       
  2648.         if (fgdl == "true") {
  2649.           var prompter = 
  2650.               Components.classes["@mozilla.org/updates/update-prompt;1"].
  2651.               createInstance(Components.interfaces.nsIUpdatePrompt);
  2652.           this._update.QueryInterface(Components.interfaces.nsIWritablePropertyBag);
  2653.           this._update.setProperty("downloadFailed", "true");
  2654.           prompter.showUpdateError(this._update);
  2655.         }
  2656.       }
  2657.  
  2658.       // the complete download succeeded or total failure was handled, so exit
  2659.       return;
  2660.     }
  2661.  
  2662.     // Do this after *everything* else, since it will likely cause the app 
  2663.     // to shut down. 
  2664.     if (shouldShowPrompt) {
  2665.       // Notify the user that an update has been downloaded and is ready for 
  2666.       // installation (i.e. that they should restart the application). We do
  2667.       // not notify on failed update attempts.
  2668.       var prompter = 
  2669.           Components.classes["@mozilla.org/updates/update-prompt;1"].
  2670.           createInstance(Components.interfaces.nsIUpdatePrompt);
  2671.       prompter.showUpdateDownloaded(this._update);
  2672.     }
  2673.   },
  2674.  
  2675.   /**
  2676.    * See nsIInterfaceRequestor.idl
  2677.    */
  2678.   getInterface: function(iid) {
  2679.     // The network request may require proxy authentication, so provide the
  2680.     // default nsIAuthPrompt if requested.
  2681.     if (iid.equals(Components.interfaces.nsIAuthPrompt)) {
  2682.       var prompt =
  2683.           Components.classes["@mozilla.org/network/default-auth-prompt;1"].
  2684.           createInstance();
  2685.       return prompt.QueryInterface(iid);
  2686.     }
  2687.     Components.returnCode = Components.results.NS_ERROR_NO_INTERFACE;
  2688.     return null;
  2689.   },
  2690.    
  2691.   /**
  2692.    * See nsISupports.idl
  2693.    */
  2694.   QueryInterface: function(iid) {
  2695.     if (!iid.equals(Components.interfaces.nsIRequestObserver) &&
  2696.         !iid.equals(Components.interfaces.nsIProgressEventSink) &&
  2697.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  2698.         !iid.equals(Components.interfaces.nsISupports))
  2699.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2700.     return this;
  2701.   }
  2702. };
  2703.  
  2704. /**
  2705.  * A manager for update check timers. Manages timers that fire over long 
  2706.  * periods of time (e.g. days, weeks).
  2707.  * @constructor
  2708.  */
  2709. function TimerManager() {
  2710.   getObserverService().addObserver(this, "xpcom-shutdown", false);
  2711.  
  2712.   const nsITimer = Components.interfaces.nsITimer;
  2713.   this._timer = Components.classes["@mozilla.org/timer;1"]
  2714.                           .createInstance(nsITimer);
  2715.   var timerInterval = getPref("getIntPref", PREF_APP_UPDATE_TIMER, 600000);
  2716.   this._timer.initWithCallback(this, timerInterval, 
  2717.                                nsITimer.TYPE_REPEATING_SLACK);
  2718. }
  2719. TimerManager.prototype = {
  2720.   /**
  2721.    * See nsIObserver.idl
  2722.    */
  2723.   observe: function(subject, topic, data) {
  2724.     if (topic == "xpcom-shutdown") {
  2725.      getObserverService().removeObserver(this, "xpcom-shutdown");
  2726.  
  2727.       // Release everything we hold onto. 
  2728.       for (var timerID in this._timers)
  2729.         delete this._timers[timerID];
  2730.       this._timer = null;
  2731.       this._timers = null;
  2732.     }
  2733.   },
  2734.  
  2735.   /**
  2736.    * The Checker Timer
  2737.    */
  2738.   _timer: null,
  2739.   
  2740.   /**
  2741.    * The set of registered timers.
  2742.    */
  2743.   _timers: { },
  2744.   
  2745.   /**
  2746.    * Called when the checking timer fires.
  2747.    * @param   timer
  2748.    *          The checking timer that fired. 
  2749.    */
  2750.   notify: function(timer) {
  2751.     for (var timerID in this._timers) {
  2752.       var timerData = this._timers[timerID];
  2753.       var lastUpdateTime = timerData.lastUpdateTime;
  2754.       var now = Math.round(Date.now() / 1000);
  2755.     
  2756.       // Fudge the lastUpdateTime by some random increment of the update 
  2757.       // check interval (e.g. some random slice of 10 minutes) so that when
  2758.       // the time comes to check, we offset each client request by a random
  2759.       // amount so they don't all hit at once. app.update.timer is in milliseconds,
  2760.       // whereas app.update.lastUpdateTime is in seconds
  2761.       var timerInterval = getPref("getIntPref", PREF_APP_UPDATE_TIMER, 600000);
  2762.       lastUpdateTime += Math.round(Math.random() * timerInterval / 1000);
  2763.  
  2764.       if ((now - lastUpdateTime) > timerData.interval &&
  2765.           timerData.callback instanceof Components.interfaces.nsITimerCallback) {
  2766.         timerData.callback.notify(timer);
  2767.         timerData.lastUpdateTime = now;
  2768.         var preference = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(/%ID%/, timerID);
  2769.         gPref.setIntPref(preference, now);
  2770.       }
  2771.     }
  2772.   },
  2773.   
  2774.   /**
  2775.    * See nsIUpdateService.idl
  2776.    */
  2777.   registerTimer: function(id, callback, interval) {
  2778.     var preference = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(/%ID%/, id);
  2779.     var now = Math.round(Date.now() / 1000);
  2780.     var lastUpdateTime = null;
  2781.     if (gPref.prefHasUserValue(preference)) {
  2782.       lastUpdateTime = gPref.getIntPref(preference);
  2783.     } else {
  2784.       gPref.setIntPref(preference, now);
  2785.       lastUpdateTime = now;
  2786.     }
  2787.     this._timers[id] = { callback       : callback, 
  2788.                          interval       : interval,
  2789.                          lastUpdateTime : lastUpdateTime }; 
  2790.   },
  2791.  
  2792.   /**
  2793.    * See nsISupports.idl
  2794.    */
  2795.   QueryInterface: function(iid) {
  2796.     if (!iid.equals(Components.interfaces.nsIUpdateTimerManager) &&
  2797.         !iid.equals(Components.interfaces.nsITimerCallback) &&
  2798.         !iid.equals(Components.interfaces.nsIObserver) &&
  2799.         !iid.equals(Components.interfaces.nsISupports))
  2800.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2801.     return this;
  2802.   }
  2803. };
  2804.  
  2805. //@line 2778 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2806. /**
  2807.  * UpdatePrompt
  2808.  * An object which can prompt the user with information about updates, request
  2809.  * action, etc. Embedding clients can override this component with one that 
  2810.  * invokes a native front end. 
  2811.  * @constructor
  2812.  */
  2813. function UpdatePrompt() {
  2814. }
  2815. UpdatePrompt.prototype = {
  2816.   /**
  2817.    * See nsIUpdateService.idl
  2818.    */
  2819.   checkForUpdates: function() {
  2820.     this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2821.                  null, null);
  2822.   },
  2823.     
  2824.   /**
  2825.    * See nsIUpdateService.idl
  2826.    */
  2827.   showUpdateAvailable: function(update) {
  2828.     if (this._enabled) {
  2829.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2830.                    "updatesavailable", update);
  2831.     }
  2832.   },
  2833.   
  2834.   /**
  2835.    * See nsIUpdateService.idl
  2836.    */
  2837.   showUpdateDownloaded: function(update) {
  2838.     if (this._enabled) {
  2839.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2840.                    "finishedBackground", update);
  2841.     }
  2842.   },
  2843.   
  2844.   /**
  2845.    * See nsIUpdateService.idl
  2846.    */
  2847.   showUpdateInstalled: function(update) {
  2848.     var showUpdateInstalledUI = getPref("getBoolPref", 
  2849.       PREF_APP_UPDATE_SHOW_INSTALLED_UI, true);
  2850.     if (this._enabled && showUpdateInstalledUI) {
  2851.       this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2852.                    "installed", update);
  2853.     }
  2854.   },
  2855.   
  2856.   /**
  2857.    * See nsIUpdateService.idl
  2858.    */
  2859.   showUpdateError: function(update) {
  2860.     if (this._enabled) {
  2861.       // In some cases, we want to just show a simple alert dialog:
  2862.       if (update.state == STATE_FAILED && update.errorCode == WRITE_ERROR) {
  2863.         var sbs = 
  2864.             Components.classes["@mozilla.org/intl/stringbundle;1"].
  2865.             getService(Components.interfaces.nsIStringBundleService);
  2866.         var updateBundle = sbs.createBundle(URI_UPDATES_PROPERTIES);
  2867.         var title = updateBundle.GetStringFromName("updaterIOErrorTitle");
  2868.         var text = updateBundle.formatStringFromName("updaterIOErrorText",
  2869.                                                      [gApp.name], 1);
  2870.         var ww =
  2871.             Components.classes["@mozilla.org/embedcomp/window-watcher;1"].
  2872.             getService(Components.interfaces.nsIWindowWatcher);
  2873.         ww.getNewPrompter(null).alert(title, text);
  2874.       } else {
  2875.         this._showUI(null, URI_UPDATE_PROMPT_DIALOG, null, "Update:Wizard", 
  2876.                      "errors", update);
  2877.       }
  2878.     }
  2879.   },
  2880.   
  2881.   /**
  2882.    * See nsIUpdateService.idl
  2883.    */
  2884.   showUpdateHistory: function(parent) {
  2885.     this._showUI(parent, URI_UPDATE_HISTORY_DIALOG, "modal,dialog=yes", "Update:History", 
  2886.                  null, null);
  2887.   },
  2888.   
  2889.   /**
  2890.    * Whether or not we are enabled (i.e. not in Silent mode)
  2891.    */
  2892.   get _enabled() {
  2893.     return !getPref("getBoolPref", PREF_APP_UPDATE_SILENT, false);
  2894.   },
  2895.   
  2896.   /**
  2897.    * Show the Update Checking UI
  2898.    * @param   parent
  2899.    *          A parent window, can be null
  2900.    * @param   uri
  2901.    *          The URI string of the dialog to show
  2902.    * @param   name
  2903.    *          The Window Name of the dialog to show, in case it is already open
  2904.    *          and can merely be focused
  2905.    * @param   page
  2906.    *          The page of the wizard to be displayed, if one is already open.
  2907.    * @param   update
  2908.    *          An update to pass to the UI in the window arguments. 
  2909.    *          Can be null
  2910.    */
  2911.   _showUI: function(parent, uri, features, name, page, update) {
  2912.     var ary = null;
  2913.     if (update) {
  2914.       ary = Components.classes["@mozilla.org/supports-array;1"]
  2915.                       .createInstance(Components.interfaces.nsISupportsArray);
  2916.       ary.AppendElement(update);
  2917.     }
  2918.       
  2919.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  2920.                        .getService(Components.interfaces.nsIWindowMediator);
  2921.     var win = wm.getMostRecentWindow(name);
  2922.     if (win) {
  2923.       if (page && "setCurrentPage" in win)
  2924.         win.setCurrentPage(page);
  2925.       win.focus();
  2926.     }
  2927.     else {
  2928.       var openFeatures = "chrome,centerscreen,dialog=no,resizable=no,titlebar,toolbar=no";
  2929.       if (features)
  2930.         openFeatures += "," + features;
  2931.       var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  2932.                          .getService(Components.interfaces.nsIWindowWatcher);
  2933.       ww.openWindow(parent, uri, "", openFeatures, ary);
  2934.     }
  2935.   },
  2936.   
  2937.   /**
  2938.    * See nsISupports.idl
  2939.    */
  2940.   QueryInterface: function(iid) {
  2941.     if (!iid.equals(Components.interfaces.nsIUpdatePrompt) &&
  2942.         !iid.equals(Components.interfaces.nsISupports))
  2943.       throw Components.results.NS_ERROR_NO_INTERFACE;
  2944.     return this;
  2945.   }
  2946. };
  2947. //@line 2920 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2948.  
  2949. var gModule = {
  2950.   registerSelf: function(componentManager, fileSpec, location, type) {
  2951.     componentManager = componentManager.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  2952.     
  2953.     for (var key in this._objects) {
  2954.       var obj = this._objects[key];
  2955.       componentManager.registerFactoryLocation(obj.CID, obj.className, obj.contractID,
  2956.                                                fileSpec, location, type);
  2957.     }
  2958.  
  2959.     // Make the Update Service a startup observer
  2960.     var categoryManager = Components.classes["@mozilla.org/categorymanager;1"]
  2961.                                     .getService(Components.interfaces.nsICategoryManager);
  2962.     categoryManager.addCategoryEntry("app-startup", this._objects.service.className,
  2963.                                      "service," + this._objects.service.contractID, 
  2964.                                      true, true);
  2965.   },
  2966.   
  2967.   getClassObject: function(componentManager, cid, iid) {
  2968.     if (!iid.equals(Components.interfaces.nsIFactory))
  2969.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  2970.  
  2971.     for (var key in this._objects) {
  2972.       if (cid.equals(this._objects[key].CID))
  2973.         return this._objects[key].factory;
  2974.     }
  2975.     
  2976.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2977.   },
  2978.   
  2979.   _objects: {
  2980.     service: { CID        : Components.ID("{B3C290A6-3943-4B89-8BBE-C01EB7B3B311}"),
  2981.                contractID : "@mozilla.org/updates/update-service;1",
  2982.                className  : "Update Service",
  2983.                factory    : makeFactory(UpdateService)
  2984.              },
  2985.     checker: { CID        : Components.ID("{898CDC9B-E43F-422F-9CC4-2F6291B415A3}"),
  2986.                contractID : "@mozilla.org/updates/update-checker;1",
  2987.                className  : "Update Checker",
  2988.                factory    : makeFactory(Checker)
  2989.              },
  2990. //@line 2963 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2991.     prompt:  { CID        : Components.ID("{27ABA825-35B5-4018-9FDD-F99250A0E722}"),
  2992.                contractID : "@mozilla.org/updates/update-prompt;1",
  2993.                className  : "Update Prompt",
  2994.                factory    : makeFactory(UpdatePrompt)
  2995.              },
  2996. //@line 2969 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  2997.     timers:  { CID        : Components.ID("{B322A5C0-A419-484E-96BA-D7182163899F}"),
  2998.                contractID : "@mozilla.org/updates/timer-manager;1",
  2999.                className  : "Timer Manager",
  3000.                factory    : makeFactory(TimerManager)
  3001.              },
  3002.     manager: { CID        : Components.ID("{093C2356-4843-4C65-8709-D7DBCBBE7DFB}"),
  3003.                contractID : "@mozilla.org/updates/update-manager;1",
  3004.                className  : "Update Manager",
  3005.                factory    : makeFactory(UpdateManager)
  3006.              },
  3007.   },
  3008.   
  3009.   canUnload: function(componentManager) {
  3010.     return true;
  3011.   }
  3012. };
  3013.  
  3014. /**
  3015.  * Creates a factory for instances of an object created using the passed-in
  3016.  * constructor.
  3017.  */
  3018. function makeFactory(ctor) {
  3019.   function ci(outer, iid) {
  3020.     if (outer != null)
  3021.       throw Components.results.NS_ERROR_NO_AGGREGATION;
  3022.     return (new ctor()).QueryInterface(iid);
  3023.   } 
  3024.   return { createInstance: ci };
  3025. }
  3026.   
  3027. function NSGetModule(compMgr, fileSpec) {
  3028.   return gModule;
  3029. }
  3030.  
  3031. /**
  3032.  * Determines whether or there are installed addons which are incompatible 
  3033.  * with this update.
  3034.  * @param   update
  3035.  *          The update to check compatibility against
  3036.  * @returns true if there are no addons installed that are incompatible with
  3037.  *          the specified update, false otherwise.
  3038.  */
  3039. function isCompatible(update) {
  3040. //@line 3013 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  3041.   var em = 
  3042.       Components.classes["@mozilla.org/extensions/manager;1"].
  3043.       getService(Components.interfaces.nsIExtensionManager);
  3044.   var items = em.getIncompatibleItemList("", update.extensionVersion,
  3045.     nsIUpdateItem.TYPE_ADDON, false, { });
  3046.   return items.length == 0;
  3047. //@line 3022 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  3048. }
  3049.  
  3050. /**
  3051.  * Shows a prompt for an update, provided there are no incompatible addons.
  3052.  * If there are, kick off an update check and see if updates are available
  3053.  * that will resolve the incompatibilities.
  3054.  * @param   update
  3055.  *          The available update to show
  3056.  */
  3057. function showPromptIfNoIncompatibilities(update) {
  3058.   function showPrompt(update) {
  3059.     LOG("UpdateService", "_selectAndInstallUpdate: need to prompt user before continuing...");
  3060.     var prompter = 
  3061.         Components.classes["@mozilla.org/updates/update-prompt;1"].
  3062.         createInstance(Components.interfaces.nsIUpdatePrompt);
  3063.     prompter.showUpdateAvailable(update);
  3064.   }
  3065.  
  3066. //@line 3041 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  3067.   /**
  3068.    * Determines if an addon is compatible with a particular update.
  3069.    * @param   addon
  3070.    *          The addon to check
  3071.    * @param   version
  3072.    *          The extensionVersion of the update to check for compatibility 
  3073.    *          against.
  3074.    * @returns true if the addon is compatible, false otherwise
  3075.    */
  3076.   function addonIsCompatible(addon, version) {
  3077.     var vc = 
  3078.         Components.classes["@mozilla.org/xpcom/version-comparator;1"].
  3079.         getService(Components.interfaces.nsIVersionComparator);
  3080.     return (vc.compare(version, addon.minAppVersion) >= 0) &&
  3081.           (vc.compare(version, addon.maxAppVersion) <= 0);
  3082.   }
  3083.  
  3084.   /**
  3085.    * An object implementing nsIAddonUpdateCheckListener that looks for 
  3086.    * available updates to addons and if updates are found that will make the 
  3087.    * user's installed addon set compatible with the update, suppresses the
  3088.    * prompt that would otherwise be shown.
  3089.    * @param   addons
  3090.    *          An array of incompatible addons that are installed.
  3091.    * @constructor
  3092.    */
  3093.   function Listener(addons) {
  3094.     this._addons = addons;
  3095.   }
  3096.   Listener.prototype = {
  3097.     _addons: null,
  3098.     
  3099.     /**
  3100.      * See nsIUpdateService.idl
  3101.      */
  3102.     onUpdateStarted: function() { 
  3103.     },
  3104.     onUpdateEnded: function() {
  3105.       // There are still incompatibilities, even after an extension update 
  3106.       // check to see if there were newer, compatible versions available, so
  3107.       // we have to prompt. 
  3108.       // 
  3109.       // PREF_APP_UPDATE_INCOMPATIBLE_MODE controls the mode in which we 
  3110.       // handle incompatibilities:
  3111.       // 0    We count both VersionInfo updates _and_ NewerVersion updates
  3112.       //      against the list of incompatible addons installed - i.e. if
  3113.       //      Foo 1.2 is installed and it is incompatible with the update, and
  3114.       //      we find Foo 2.0 which is but which is not yet downloaded or 
  3115.       //      installed, then we do NOT prompt because the user can download
  3116.       //      Foo 2.0 when they restart after the update during the mismatch
  3117.       //      checking UI. This is the default, since it suppresses most 
  3118.       //      prompt dialogs. 
  3119.       // 1    We count only VersionInfo updates against the list of 
  3120.       //      incompatible addons installed - i.e. if the situation above
  3121.       //      with Foo 1.2 and available update to 2.0 applies, we DO show
  3122.       //      the prompt since a download operation will be required after
  3123.       //      the update. This is not the default and is supplied only as
  3124.       //      a hidden option for those that want it. 
  3125.       var mode = getPref("getIntPref", PREF_APP_UPDATE_INCOMPATIBLE_MODE, 
  3126.                          INCOMPATIBLE_MODE_NEWVERSIONS);
  3127.       if ((mode == 0 && this._addons.length) || !isCompatible(update))
  3128.         showPrompt(update);
  3129.     },
  3130.     onAddonUpdateStarted: function(addon) {
  3131.     },
  3132.     onAddonUpdateEnded: function(addon, status) {
  3133.       if (status == Components.interfaces.nsIAddonUpdateCheckListener.STATUS_UPDATE &&
  3134.           addonIsCompatible(addon, update.extensionVersion)) {
  3135.         for (var i = 0; i < this._addons.length; ++i) {
  3136.           if (this._addons[i] == addon) {
  3137.             this._addons.splice(i, 1);
  3138.             break;
  3139.           }
  3140.         }
  3141.       }
  3142.     },
  3143.     /**
  3144.      * See nsISupports.idl
  3145.      */
  3146.     QueryInterface: function(iid) {
  3147.       if (!iid.equals(Components.interfaces.nsIAddonUpdateCheckListener) &&
  3148.           !iid.equals(Components.interfaces.nsISupports))
  3149.         throw Components.results.NS_ERROR_NO_INTERFACE;
  3150.       return this;
  3151.     }
  3152.   };
  3153.   
  3154.   if (!isCompatible(update)) {
  3155.     var em = 
  3156.         Components.classes["@mozilla.org/extensions/manager;1"].
  3157.         getService(Components.interfaces.nsIExtensionManager);
  3158.     var listener = new Listener(em.getIncompatibleItemList("", 
  3159.       update.extensionVersion, nsIUpdateItem.TYPE_ADDON, false, { }));
  3160.     // See documentation on |mode| above. 
  3161.     var mode = getPref("getIntPref", PREF_APP_UPDATE_INCOMPATIBLE_MODE, 
  3162.                        INCOMPATIBLE_MODE_NEWVERSIONS);
  3163.     em.update([], 0, mode != 0, listener);
  3164.   }
  3165.   else
  3166. //@line 3141 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in"
  3167.     showPrompt(update);
  3168. }
  3169.